function swapCounty()
{
	var e = document.getElementById("countybox");
	var val = e.options[e.selectedIndex].value;
	
	if ( val != -1 )
	{
		var maxval = document.getElementById("maxval").value;
		for (var i=1;i<=maxval;i++)
		{
			if ( val == i )
				document.getElementById( 'county_' + i ).style.display = 'inline';
			else
				document.getElementById( 'county_' + i ).style.display = 'none';
			
		}
	}
}
