function onFormSubmit(){
	var cur = EdenWay.GeoMaps.GetCurrentSelection();
	
	var country = document.recherche.country;
	var locality = document.recherche.locality;
	
	if(cur.country){
		country.value = cur.country;
		locality.value = cur.locality;
		document.recherche.submit();
	}else{
		country.value = '';
		locality.value = '';
		alert('Merci de sélectionner une ville.');
		return false;
	}
}

