diff --git a/htdocs/societe/ajaxziptown.php b/htdocs/societe/ajaxziptown.php
index 87877791f7b2797cc1e4de9a2afefe2c5b55d9aa..1a34dcd4f842bbe3496f38292ca51ea90a40b701 100644
--- a/htdocs/societe/ajaxziptown.php
+++ b/htdocs/societe/ajaxziptown.php
@@ -102,8 +102,13 @@ if (! empty($_GET['zipcode']) || ! empty($_GET['town']))
 				$country = $row['fk_country']?($langs->trans('Country'.$row['country_code'])!='Country'.$row['country_code']?$langs->trans('Country'.$row['country_code']):$row['country']):'';
 				$county = $row['fk_county']?($langs->trans($row['county_code'])!=$row['county_code']?$langs->trans($row['county_code']):($row['county']!='-'?$row['county']:'')):'';
 				
-				$row_array['label'] = $row['zip'].' '.$row['town'].' ('.($county?$county.' - ':'').$country.')';
-				if ($zipcode)
+				$row_array['label'] = $row['zip'].' '.$row['town'];
+				$row_array['label'] .= ($county || $country)?'(':'';
+                $row_array['label'] .= $county;
+				$row_array['label'] .= ($county && $country?' - ':'');
+                $row_array['label'] .= $country;
+                $row_array['label'] .= ($county || $country)?')':'';
+                if ($zipcode)
 				{
 					$row_array['value'] = $row['zip'];
 					$row_array['town'] = $row['town'];
diff --git a/htdocs/societe/canvas/actions_card_common.class.php b/htdocs/societe/canvas/actions_card_common.class.php
index 69b666f2b233b2f349aafe0fc0ce750eb299306d..8bb6d99faac27373d8b6e33c8c94592cabc9749b 100644
--- a/htdocs/societe/canvas/actions_card_common.class.php
+++ b/htdocs/societe/canvas/actions_card_common.class.php
@@ -124,8 +124,6 @@ class ActionsCardCommon
             $this->tpl['suppliercategory'] = $this->object->SupplierCategories;
             $this->tpl['select_suppliercategory'] = $form->selectarray("fournisseur_categorie",$this->object->SupplierCategories,$_POST["fournisseur_categorie"],1);
 
-            if ($conf->use_javascript_ajax && $conf->global->MAIN_AUTOFILL_TOWNFROMZIP) $this->tpl['autofilltownfromzip'] = '<input class="button" type="button" name="searchpostalcode" value="'.$langs->trans('FillTownFromZip').'" onclick="autofilltownfromzip_PopupPostalCode(\''.DOL_URL_ROOT.'\',cp.value,ville,pays_id,departement_id)">';
-
             // Country
             $this->tpl['select_country'] = $form->select_country($this->object->pays_id,'pays_id');
             $countrynotdefined = $langs->trans("ErrorSetACountryFirst").' ('.$langs->trans("SeeAbove").')';