var d_hotel;
function liste_hotel()
	{
	var liste_destination = "";
	for ( i=0; i<selectHotel.length; i++ )
			{
			if(d_hotel!=null && d_hotel!="")
			   	{
			   	if (d_hotel.code == selectHotel[i][1])
			   		{liste_destination += '<option value="' + selectHotel[i][1] + '" selected>' + selectHotel[i][0] + '</option>';}
			   	else
			   		{liste_destination += '<option value="' + selectHotel[i][1] + '">' + selectHotel[i][0] + '</option>';}
			   	}
			else
					{liste_destination += '<option value="' + selectHotel[i][1] + '">' + selectHotel[i][0] + '</option>';}
			}
	document.write(liste_destination);
	}	
	

var alert_ville=new Array();
	alert_ville["fr"] = "Sélectionnez une ville svp";
	alert_ville["gb"] = "Select a city please";
	alert_ville["de"] = "Eine Stadt bitte vorwählen";
	
function valid_form(lang) {
	if (document.bookingEngine.nom_ville.value!="0" && document.bookingEngine.nom_ville.value!= null){
			 document.bookingEngine.submit();
	}else {
	alert (alert_ville[lang]);
	}
}


		
	

		