	function _getGeocode() {
		var address = $('#form-points-de-vente #DealerSearchLocation').attr('value')+" Italia";
		//alert(geocoder);
		//   alert($('#DealerSearchLocation').attr('name'));
		//   alert($('#DealerSearchLocation').attr('value'));
		geocoder = new GClientGeocoder();
		geocoder.getLatLng (address, function (point) {
			if (!point) {
				alert(address + " not found");
			} else {
				$('#form-points-de-vente #Latitude').val(point.lat());
				$('#form-points-de-vente #Longitude').val(point.lng());
				//alert($('#form-points-de-vente #Longitude').attr('value'));
			}
			$('#form-points-de-vente').submit();
		});
		return false;
	}
