function validateHomeSearch(FormRef)
	{
		// Check that either a county or town has been searched for
		if (FormRef.Town.options[FormRef.Town.selectedIndex].text=="Search by town") {
		if (FormRef.county.options[FormRef.county.selectedIndex].text=="Search by county") {
				{ window.alert ("Please be more specific and chose either a town or county."); return false; }
		}
		}
	}
	
//If county is selected then reset town and vice-versa
function selectCheck(first,second) {  
	var ind = first.selectedIndex;  
	if (ind > 0) {   
		document.getElementById(second).selectedIndex = 0;  
		}  
	} 
