function setCounties()
{

	var theSID=document.getElementById('states').value;
	var theLen=countyList[theSID].length;
	
	//alert(theLen);

	var topHtml="<select name=\"listofCounties\" id=\"listofCounties\" class=\"largeclearSelectBoxEntry\" onchange=\"setCountyID()\">";
	var midHtml="<option value=\"None\">-- Select a County --</option>"
	var botHtml="</select>";
	
	var ii=0;
	
	for(ii=0; ii<theLen; ii++)
	{
		midHtml=midHtml+"<option value=\""+ii+"\">"+countyList[theSID][ii]+"</option>";
	
	}
	
	var newHtml=topHtml+midHtml+botHtml;
	document.getElementById('counties').innerHTML=newHtml;

}

function setCountyID()
{
	var theSID=document.getElementById('states').value;
	var thecountyNum=document.getElementById('listofCounties').value;
	document.getElementById('countyID').value=countyListID[theSID][thecountyNum];
	document.getElementById('countyName').value=countyList[theSID][thecountyNum];
	document.getElementById('stateName').value=stList[theSID];
	
	

}