// Holiday with us search form check
// ©2002 Aurora Interactive Ltd.

function formchk()
{
	if (document.searchform.accomodationtype.value != '')
	{
		if (document.searchform.accomodationtype.value == 'Hotel' && document.searchform.maximum_rent.value != '')
		{
			document.searchform.maximum_rent.value = '';
		}
		return true;
	}
	else
	{
		alert("Please select the Type of Accommodation you are looking for");
		return false;
	}	
}