public static function getCompanyElement($fieldName, $defaultCompanyName = '')
 {
     $control = new Customweb_Form_Control_TextInput($fieldName, $defaultCompanyName);
     $control->setAutocomplete(true);
     $element = new Customweb_Form_Element(Customweb_I18n_Translation::__('Company name'), $control, Customweb_I18n_Translation::__('Please enter the name of your company if you order for your company.'));
     $element->setElementIntention(Customweb_Saferpay_IntentionFactory::getCompanyNameIntention());
     return $element;
 }