function showdata()
{
var selectstBox = document.forms["frmAOI"].aoiList;
stat = selectstBox.options[selectstBox.selectedIndex].text


if (stat != "")
{	
window.location.href = "http://www.soilsurvey.org/tools/report/countylist.asp?state="+stat+"";
}
}

function ShowValue()
{
var aoiListObj = document.frmAOI.aoiList;
	var str = aoiListObj.options[aoiListObj.selectedIndex].value;
	if (str.length > 0)
	{ 	
		cnty = str.split("|")
		cntylist = cnty[0];
		//alert(cntylist);
		window.location.href = "countylist.asp?sid=" + Math.random() + "&q=" + cnty
	}
}
//
