// JavaScript Document
function valid(theForm)
{
    if(theForm.hotels.value=="")
	{
		alert("Please select the hotels you want");
		theForm.hotels.focus();
		return false;
	}
	if(theForm.arrival.value=="")
	{
		alert("Please select the arrival date");
		theForm.arrival.focus();
		return false;
	}
	if(theForm.nights.value=="")
	{
		alert("Please select the number of nights");
		theForm.nights.focus();
		return false;
	}
	if(theForm.adults.value=="")
	{
		alert("Please select the adults");
		theForm.adults.focus();
		return false;
	}
	return true;
}
