	function checkHomeSearch(theform)  {
		// need to insert correct value into spa_type hidden field
		selindex = theform.spa_typeID.selectedIndex;
		if (selindex > 0) theform.spa_type.value = theform.spa_typeID.options[selindex].text;
		else theform.spa_type.value="";
		return true;
		}

