// JavaScript Document
	function selectCounty(county)
	{
		document.getElementById("county_id").value = county;
		document.getElementById("farm_id").value = "0";
		document.forms["form1"].submit();
	}
	function getMap(farm)
	{
		document.getElementById("county_id").value = "0";
		document.getElementById("farm_id").value = farm;
		document.forms["form1"].submit();
	}

