/**
 * DHTML date validation script. Courtesy of SmartWebby.com (http://www.smartwebby.com/dhtml/)
 */
// Declaring valid date character, minimum year and maximum year
var dtCh= "/";
var minYear=1900;
var maxYear=2100;

function isInteger(s){
	var i;
    for (i = 0; i < s.length; i++){   
        // Check that current character is number.
        var c = s.charAt(i);
        if (((c < "0") || (c > "9"))) return false;
    }
    // All characters are numbers.
    return true;
}

function stripCharsInBag(s, bag){
	var i;
    var returnString = "";
    // Search through string's characters one by one.
    // If character is not in bag, append to returnString.
    for (i = 0; i < s.length; i++){   
        var c = s.charAt(i);
        if (bag.indexOf(c) == -1) returnString += c;
    }
    return returnString;
}

function daysInFebruary (year){
	// February has 29 days in any year evenly divisible by four,
    // EXCEPT for centurial years which are not also divisible by 400.
    return (((year % 4 == 0) && ( (!(year % 100 == 0)) || (year % 400 == 0))) ? 29 : 28 );
}
function DaysArray(n) {
	for (var i = 1; i <= n; i++) {
		this[i] = 31
		if (i==4 || i==6 || i==9 || i==11) {this[i] = 30}
		if (i==2) {this[i] = 29}
   } 
   return this
}

function isDate(dtStr){
	var daysInMonth = DaysArray(12)
	var pos1=dtStr.indexOf(dtCh)
	var pos2=dtStr.indexOf(dtCh,pos1+1)
	var strMonth=dtStr.substring(0,pos1)
	var strDay=dtStr.substring(pos1+1,pos2)
	var strYear=dtStr.substring(pos2+1)
	strYr=strYear
	if (strDay.charAt(0)=="0" && strDay.length>1) strDay=strDay.substring(1)
	if (strMonth.charAt(0)=="0" && strMonth.length>1) strMonth=strMonth.substring(1)
	for (var i = 1; i <= 3; i++) {
		if (strYr.charAt(0)=="0" && strYr.length>1) strYr=strYr.substring(1)
	}
	month=parseInt(strMonth)
	day=parseInt(strDay)
	year=parseInt(strYr)
	if (pos1==-1 || pos2==-1){
		//alert("The date format should be : mm/dd/yyyy")
		return false
	}
	if (strMonth.length<1 || month<1 || month>12){
		//alert("Please enter a valid month")
		return false
	}
	if (strDay.length<1 || day<1 || day>31 || (month==2 && day>daysInFebruary(year)) || day > daysInMonth[month]){
		//alert("Please enter a valid day")
		return false
	}
	if (strYear.length != 4 || year==0 || year<minYear || year>maxYear){
		//alert("Please enter a valid 4 digit year")
		return false
	}
	if (dtStr.indexOf(dtCh,pos2+1)!=-1 || isInteger(stripCharsInBag(dtStr, dtCh))==false){
		//alert("Please enter a valid date")
		return false
	}
return true
}

function dateDifference(strDate1,strDate2)
{
	var dateDiff= 0;
    datDate1= Date.parse(strDate1);
    datDate2= Date.parse(strDate2);
	alert(datDate1);
	alert(datDate2);
    dateDiff = (datDate2-datDate1)/(24*60*60*1000);
	alert(dateDiff);
    return dateDiff;
}

function getCheckedValue(radioObj) 
{
	if(!radioObj)
		return "";
	var radioLength = radioObj.length;
	if(radioLength == undefined)
		if(radioObj.checked)
			return radioObj.value;
		else
			return "";
	for(var i = 0; i < radioLength; i++) 
	{
		if(radioObj[i].checked) 
		{
			return radioObj[i].value;
		}
	}
	return "";
}

function getCheckedPDLViolations() 
{
	var docForm = document.leadForm;
	var checkedValues = '';
	for (i=0; i<docForm.PDLviolations.length; i++)
	{
		if (docForm.PDLviolations[i].checked==true)
		{
			if(checkedValues != '')
			{
				checkedValues = checkedValues+','+docForm.PDLviolations[i].value;
			}
			else
			{
				checkedValues = docForm.PDLviolations[i].value;
			}
		}
	}
	return checkedValues;
}

function getCheckedCDLViolations() 
{
	var docForm = document.leadForm;
	var checkedValues = '';
	for (i=0; i<docForm.CDLviolations.length; i++)
	{
		if (docForm.CDLviolations[i].checked==true)
		{
			if(checkedValues != '')
			{
				checkedValues = checkedValues+','+docForm.CDLviolations[i].value;
			}
			else
			{
				checkedValues = docForm.CDLviolations[i].value;
			}
		}
	}
	return checkedValues;
}
	
function getSelectedValue(multipleSelectObj) 
{
	var hasSelections = false;
	for(var i = 0; i < multipleSelectObj.options.length; i++)
	{
	  if(multipleSelectObj.options[i].selected)
	  {
	    hasSelections = true;
	    break;
	  }
	}
	return hasSelections;
}

function checkPDLViolationBox(id)
{
	var docForm = document.leadForm;
	
	if(docForm.PDLviolations[id].checked==true)
	{
		docForm.PDLviolations[id].checked=false;
	}
	else
	{
		docForm.PDLviolations[id].checked=true;
	}
}

function checkCDLViolationBox(id)
{
	var docForm = document.leadForm;
	
	if(docForm.CDLviolations[id].checked==true)
	{
		docForm.CDLviolations[id].checked=false;
	}
	else
	{
		docForm.CDLviolations[id].checked=true;
	}
}

function CourtDateDisplaySetting()
{
	var docForm = document.leadForm;
	
	if (getCheckedValue(docForm.appearanceDateSet) == 1)
	{
		docForm.appearanceDate_1.disabled=false;
		docForm.appearanceDate_2.disabled=false;
		docForm.appearanceDate.disabled=false;
		docForm.appearanceDate_1.style.backgroundColor = "#FFFFFF";
		docForm.appearanceDate_2.style.backgroundColor = "#FFFFFF";
		docForm.appearanceDate.style.backgroundColor = "#FFFFFF";
	}
	else
	{
		docForm.appearanceDate_1.value='';
		docForm.appearanceDate_2.value='';
		docForm.appearanceDate.value='';
		docForm.appearanceDate_1.disabled=true;
		docForm.appearanceDate_2.disabled=true;
		docForm.appearanceDate.disabled=true;
		docForm.appearanceDate_1.style.backgroundColor = "#CCCCCC";
		docForm.appearanceDate_2.style.backgroundColor = "#CCCCCC";
		docForm.appearanceDate.style.backgroundColor = "#CCCCCC";
	}
}

function whichLicenseType(obj)
{
	var selectedLicense = getCheckedValue(obj.licenseType);
	var epdl=document.getElementById('PDLViolationsSection');
	var ecdl=document.getElementById('CDLViolationsSection');
	
	if(selectedLicense == 1)
	{
		epdl.style.display='';
		ecdl.style.display='none';
	}
	else
	{
		epdl.style.display='none';
		ecdl.style.display='';
	}
	          
}

function defaultSettings()
{
	var docForm = document.leadForm;
	docForm.appearanceDate_1.disabled=true;
	docForm.appearanceDate_2.disabled=true;
	docForm.appearanceDate.disabled=true;
	docForm.appearanceDate_1.style.backgroundColor = "#CCCCCC";
	docForm.appearanceDate_2.style.backgroundColor = "#CCCCCC";
	docForm.appearanceDate.style.backgroundColor = "#CCCCCC";
}

function setPDLViolations() 
{
	var docForm = document.leadForm;	
	docForm.violations.length=26
	docForm.violations.options[0].value="42"
	docForm.violations.options[0].text="DUI / DWI (PDL)"			
	docForm.violations.options[1].value="5"
	docForm.violations.options[1].text="Speeding"
	docForm.violations.options[2].value="6"
	docForm.violations.options[2].text="Disregarding a Red Light"
	docForm.violations.options[3].value="7"
	docForm.violations.options[3].text="Disregarding a Stop Sign / Failure to Yield"
	docForm.violations.options[4].value="35"
	docForm.violations.options[4].text="DMV Letter About License"
	docForm.violations.options[5].value="34"
	docForm.violations.options[5].text="DMV Won't Issue/Renew License"
	docForm.violations.options[6].value="8"
	docForm.violations.options[6].text="Drivers License Violations"
	docForm.violations.options[7].value="33"
	docForm.violations.options[7].text="Failure to Appear in Court"
	docForm.violations.options[8].value="9"
	docForm.violations.options[8].text="Failure to Control Speed"
	docForm.violations.options[9].value="37"
	docForm.violations.options[9].text="License Suspended/Revoked - DUI / DWI"
	docForm.violations.options[10].value="40"
	docForm.violations.options[10].text="License Suspended/Revoked - Insurance Violations"
	docForm.violations.options[11].value="39"
	docForm.violations.options[11].text="License Suspended/Revoked - Points on License"
	docForm.violations.options[12].value="41"
	docForm.violations.options[12].text="License Suspended/Revoked - Reckless Driving"
	docForm.violations.options[13].value="10"
	docForm.violations.options[13].text="Minor in Possession of Alcohol"
	docForm.violations.options[14].value="11"
	docForm.violations.options[14].text="No Child Safety Seat"
	docForm.violations.options[15].value="12"
	docForm.violations.options[15].text="No Liability Insurance"
	docForm.violations.options[16].value="13"
	docForm.violations.options[16].text="No Seat Belt"
	docForm.violations.options[17].value="15"
	docForm.violations.options[17].text="Open Container of Alcohol"
	docForm.violations.options[18].value="14"
	docForm.violations.options[18].text="Passing Stopped School Bus"
	docForm.violations.options[19].value="16"
	docForm.violations.options[19].text="Possession of Drugs or Paraphernalia"
	docForm.violations.options[20].value="17"
	docForm.violations.options[20].text="Racing"
	docForm.violations.options[21].value="38"
	docForm.violations.options[21].text="Traffic Accident"
	docForm.violations.options[22].value="32"
	docForm.violations.options[22].text="Unpaid Traffic Tickets"
	docForm.violations.options[23].value="18"
	docForm.violations.options[23].text="Vehicle Inspection Violations"
	docForm.violations.options[24].value="36"
	docForm.violations.options[24].text="Warrant Issued for Arrest"
	docForm.violations.options[25].value="19"
	docForm.violations.options[25].text="Other Violation"
}

function setCDLViolations() {
	var docForm = document.leadForm;	
	docForm.violations.length=23
	docForm.violations.options[0].value="43"
	docForm.violations.options[0].text="DUI / DWI (CDL)"			
	docForm.violations.options[1].value="20"
	docForm.violations.options[1].text="Speeding"
	docForm.violations.options[2].value="21"
	docForm.violations.options[2].text="Disregarding a Red Light"
	docForm.violations.options[3].value="22"
	docForm.violations.options[3].text="Disregarding a Stop Sign / Failure to Yield"
	docForm.violations.options[4].value="35"
	docForm.violations.options[4].text="DMV Letter About License"
	docForm.violations.options[5].value="34"
	docForm.violations.options[5].text="DMV Won't Issue/Renew License"
	docForm.violations.options[6].value="23"
	docForm.violations.options[6].text="Drivers License Violations"
	docForm.violations.options[7].value="33"
	docForm.violations.options[7].text="Failure to Appear in Court"
	docForm.violations.options[8].value="24"
	docForm.violations.options[8].text="Failure to Control Speed"
	docForm.violations.options[9].value="37"
	docForm.violations.options[9].text="License Suspended/Revoked - DUI / DWI"
	docForm.violations.options[10].value="40"
	docForm.violations.options[10].text="License Suspended/Revoked - Insurance Violations"
	docForm.violations.options[11].value="39"
	docForm.violations.options[11].text="License Suspended/Revoked - Points on License"
	docForm.violations.options[12].value="41"
	docForm.violations.options[12].text="License Suspended/Revoked - Reckless Driving"
	docForm.violations.options[13].value="25"
	docForm.violations.options[13].text="No Liability Insurance"
	docForm.violations.options[14].value="26"
	docForm.violations.options[14].text="No Seat Belt"
	docForm.violations.options[15].value="27"
	docForm.violations.options[16].text="Open Container of Alcohol"
	docForm.violations.options[17].value="28"
	docForm.violations.options[17].text="Possession of Drugs or Paraphernalia"
	docForm.violations.options[18].value="29"
	docForm.violations.options[18].text="Racing"
	docForm.violations.options[19].value="38"
	docForm.violations.options[19].text="Traffic Accident"
	docForm.violations.options[20].value="32"
	docForm.violations.options[20].text="Unpaid Traffic Tickets"
	docForm.violations.options[21].value="30"
	docForm.violations.options[21].text="Vehicle Inspection Violations"
	docForm.violations.options[22].value="36"
	docForm.violations.options[22].text="Warrant Issued for Arrest"
	docForm.violations.options[23].value="31"
	docForm.violations.options[23].text="Other Violation"
}

function whichState(obj)
{
	switch (obj.jurisdictionState.selectedIndex)
		{
         
         	case 1:
			
             
            obj.jurisdictionCounty.length=68
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="28"
            obj.jurisdictionCounty.options[1].text="Autauga County"
            obj.jurisdictionCounty.options[2].value="29"
            obj.jurisdictionCounty.options[2].text="Baldwin County"
            obj.jurisdictionCounty.options[3].value="30"
            obj.jurisdictionCounty.options[3].text="Barbour County"
            obj.jurisdictionCounty.options[4].value="31"
            obj.jurisdictionCounty.options[4].text="Bibb County"
            obj.jurisdictionCounty.options[5].value="32"
            obj.jurisdictionCounty.options[5].text="Blount County"
            obj.jurisdictionCounty.options[6].value="33"
            obj.jurisdictionCounty.options[6].text="Bullock County"
            obj.jurisdictionCounty.options[7].value="34"
            obj.jurisdictionCounty.options[7].text="Butler County"
            obj.jurisdictionCounty.options[8].value="35"
            obj.jurisdictionCounty.options[8].text="Calhoun County"
            obj.jurisdictionCounty.options[9].value="36"
            obj.jurisdictionCounty.options[9].text="Chambers County"
            obj.jurisdictionCounty.options[10].value="37"
            obj.jurisdictionCounty.options[10].text="Cherokee County"
            obj.jurisdictionCounty.options[11].value="38"
            obj.jurisdictionCounty.options[11].text="Chilton County"
            obj.jurisdictionCounty.options[12].value="39"
            obj.jurisdictionCounty.options[12].text="Choctaw County"
            obj.jurisdictionCounty.options[13].value="40"
            obj.jurisdictionCounty.options[13].text="Clarke County"
            obj.jurisdictionCounty.options[14].value="41"
            obj.jurisdictionCounty.options[14].text="Clay County"
            obj.jurisdictionCounty.options[15].value="42"
            obj.jurisdictionCounty.options[15].text="Cleburne County"
            obj.jurisdictionCounty.options[16].value="43"
            obj.jurisdictionCounty.options[16].text="Coffee County"
            obj.jurisdictionCounty.options[17].value="44"
            obj.jurisdictionCounty.options[17].text="Colbert County"
            obj.jurisdictionCounty.options[18].value="45"
            obj.jurisdictionCounty.options[18].text="Conecuh County"
            obj.jurisdictionCounty.options[19].value="46"
            obj.jurisdictionCounty.options[19].text="Coosa County"
            obj.jurisdictionCounty.options[20].value="47"
            obj.jurisdictionCounty.options[20].text="Covington County"
            obj.jurisdictionCounty.options[21].value="48"
            obj.jurisdictionCounty.options[21].text="Crenshaw County"
            obj.jurisdictionCounty.options[22].value="49"
            obj.jurisdictionCounty.options[22].text="Cullman County"
            obj.jurisdictionCounty.options[23].value="50"
            obj.jurisdictionCounty.options[23].text="Dale County"
            obj.jurisdictionCounty.options[24].value="51"
            obj.jurisdictionCounty.options[24].text="Dallas County"
            obj.jurisdictionCounty.options[25].value="52"
            obj.jurisdictionCounty.options[25].text="DeKalb County"
            obj.jurisdictionCounty.options[26].value="53"
            obj.jurisdictionCounty.options[26].text="Elmore County"
            obj.jurisdictionCounty.options[27].value="54"
            obj.jurisdictionCounty.options[27].text="Escambia County"
            obj.jurisdictionCounty.options[28].value="55"
            obj.jurisdictionCounty.options[28].text="Etowah County"
            obj.jurisdictionCounty.options[29].value="56"
            obj.jurisdictionCounty.options[29].text="Fayette County"
            obj.jurisdictionCounty.options[30].value="57"
            obj.jurisdictionCounty.options[30].text="Franklin County"
            obj.jurisdictionCounty.options[31].value="58"
            obj.jurisdictionCounty.options[31].text="Geneva County"
            obj.jurisdictionCounty.options[32].value="59"
            obj.jurisdictionCounty.options[32].text="Greene County"
            obj.jurisdictionCounty.options[33].value="60"
            obj.jurisdictionCounty.options[33].text="Hale County"
            obj.jurisdictionCounty.options[34].value="61"
            obj.jurisdictionCounty.options[34].text="Henry County"
            obj.jurisdictionCounty.options[35].value="62"
            obj.jurisdictionCounty.options[35].text="Houston County"
            obj.jurisdictionCounty.options[36].value="63"
            obj.jurisdictionCounty.options[36].text="Jackson County"
            obj.jurisdictionCounty.options[37].value="64"
            obj.jurisdictionCounty.options[37].text="Jefferson County"
            obj.jurisdictionCounty.options[38].value="65"
            obj.jurisdictionCounty.options[38].text="Lamar County"
            obj.jurisdictionCounty.options[39].value="66"
            obj.jurisdictionCounty.options[39].text="Lauderdale County"
            obj.jurisdictionCounty.options[40].value="67"
            obj.jurisdictionCounty.options[40].text="Lawrence County"
            obj.jurisdictionCounty.options[41].value="68"
            obj.jurisdictionCounty.options[41].text="Lee County"
            obj.jurisdictionCounty.options[42].value="69"
            obj.jurisdictionCounty.options[42].text="Limestone County"
            obj.jurisdictionCounty.options[43].value="70"
            obj.jurisdictionCounty.options[43].text="Lowndes County"
            obj.jurisdictionCounty.options[44].value="71"
            obj.jurisdictionCounty.options[44].text="Macon County"
            obj.jurisdictionCounty.options[45].value="72"
            obj.jurisdictionCounty.options[45].text="Madison County"
            obj.jurisdictionCounty.options[46].value="73"
            obj.jurisdictionCounty.options[46].text="Marengo County"
            obj.jurisdictionCounty.options[47].value="74"
            obj.jurisdictionCounty.options[47].text="Marion County"
            obj.jurisdictionCounty.options[48].value="75"
            obj.jurisdictionCounty.options[48].text="Marshall County"
            obj.jurisdictionCounty.options[49].value="76"
            obj.jurisdictionCounty.options[49].text="Mobile County"
            obj.jurisdictionCounty.options[50].value="77"
            obj.jurisdictionCounty.options[50].text="Monroe County"
            obj.jurisdictionCounty.options[51].value="78"
            obj.jurisdictionCounty.options[51].text="Montgomery County"
            obj.jurisdictionCounty.options[52].value="79"
            obj.jurisdictionCounty.options[52].text="Morgan County"
            obj.jurisdictionCounty.options[53].value="80"
            obj.jurisdictionCounty.options[53].text="Perry County"
            obj.jurisdictionCounty.options[54].value="81"
            obj.jurisdictionCounty.options[54].text="Pickens County"
            obj.jurisdictionCounty.options[55].value="82"
            obj.jurisdictionCounty.options[55].text="Pike County"
            obj.jurisdictionCounty.options[56].value="83"
            obj.jurisdictionCounty.options[56].text="Randolph County"
            obj.jurisdictionCounty.options[57].value="84"
            obj.jurisdictionCounty.options[57].text="Russell County"
            obj.jurisdictionCounty.options[58].value="85"
            obj.jurisdictionCounty.options[58].text="Saint Clair County"
            obj.jurisdictionCounty.options[59].value="86"
            obj.jurisdictionCounty.options[59].text="Shelby County"
            obj.jurisdictionCounty.options[60].value="87"
            obj.jurisdictionCounty.options[60].text="Sumter County"
            obj.jurisdictionCounty.options[61].value="88"
            obj.jurisdictionCounty.options[61].text="Talladega County"
            obj.jurisdictionCounty.options[62].value="89"
            obj.jurisdictionCounty.options[62].text="Tallapoosa County"
            obj.jurisdictionCounty.options[63].value="90"
            obj.jurisdictionCounty.options[63].text="Tuscaloosa County"
            obj.jurisdictionCounty.options[64].value="91"
            obj.jurisdictionCounty.options[64].text="Walker County"
            obj.jurisdictionCounty.options[65].value="92"
            obj.jurisdictionCounty.options[65].text="Washington County"
            obj.jurisdictionCounty.options[66].value="93"
            obj.jurisdictionCounty.options[66].text="Wilcox County"
            obj.jurisdictionCounty.options[67].value="94"
            obj.jurisdictionCounty.options[67].text="Winston County" 
            break;

            
         
         	case 2:
			
             
            obj.jurisdictionCounty.length=28
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1"
            obj.jurisdictionCounty.options[1].text="Aleutians East Borough"
            obj.jurisdictionCounty.options[2].value="2"
            obj.jurisdictionCounty.options[2].text="Aleutians West County"
            obj.jurisdictionCounty.options[3].value="3"
            obj.jurisdictionCounty.options[3].text="Anchorage Borough"
            obj.jurisdictionCounty.options[4].value="4"
            obj.jurisdictionCounty.options[4].text="Bethel County"
            obj.jurisdictionCounty.options[5].value="5"
            obj.jurisdictionCounty.options[5].text="Bristol Bay Borough"
            obj.jurisdictionCounty.options[6].value="6"
            obj.jurisdictionCounty.options[6].text="Denali County"
            obj.jurisdictionCounty.options[7].value="7"
            obj.jurisdictionCounty.options[7].text="Dillingham County"
            obj.jurisdictionCounty.options[8].value="8"
            obj.jurisdictionCounty.options[8].text="Fairbanks North Star Borough"
            obj.jurisdictionCounty.options[9].value="9"
            obj.jurisdictionCounty.options[9].text="Haines Borough"
            obj.jurisdictionCounty.options[10].value="10"
            obj.jurisdictionCounty.options[10].text="Juneau Borough"
            obj.jurisdictionCounty.options[11].value="11"
            obj.jurisdictionCounty.options[11].text="Kenai Peninsula Borough"
            obj.jurisdictionCounty.options[12].value="12"
            obj.jurisdictionCounty.options[12].text="Ketchikan Gateway Borough"
            obj.jurisdictionCounty.options[13].value="13"
            obj.jurisdictionCounty.options[13].text="Kodiak Island Borough"
            obj.jurisdictionCounty.options[14].value="14"
            obj.jurisdictionCounty.options[14].text="Lake And Peninsula Borough"
            obj.jurisdictionCounty.options[15].value="15"
            obj.jurisdictionCounty.options[15].text="Matanuska-Susitna Borough"
            obj.jurisdictionCounty.options[16].value="16"
            obj.jurisdictionCounty.options[16].text="Nome County"
            obj.jurisdictionCounty.options[17].value="17"
            obj.jurisdictionCounty.options[17].text="North Slope Borough"
            obj.jurisdictionCounty.options[18].value="18"
            obj.jurisdictionCounty.options[18].text="Northwest Arctic Borough"
            obj.jurisdictionCounty.options[19].value="19"
            obj.jurisdictionCounty.options[19].text="Prince of Wales-Outer Ketchikan County"
            obj.jurisdictionCounty.options[20].value="20"
            obj.jurisdictionCounty.options[20].text="Sitka Borough"
            obj.jurisdictionCounty.options[21].value="21"
            obj.jurisdictionCounty.options[21].text="Skagway-Hoonah-Angoon County"
            obj.jurisdictionCounty.options[22].value="22"
            obj.jurisdictionCounty.options[22].text="Southeast Fairbanks County"
            obj.jurisdictionCounty.options[23].value="23"
            obj.jurisdictionCounty.options[23].text="Valdez-Cordova County"
            obj.jurisdictionCounty.options[24].value="24"
            obj.jurisdictionCounty.options[24].text="Wade Hampton County"
            obj.jurisdictionCounty.options[25].value="25"
            obj.jurisdictionCounty.options[25].text="Wrangell-Petersburg County"
            obj.jurisdictionCounty.options[26].value="26"
            obj.jurisdictionCounty.options[26].text="Yakutat City Borough"
            obj.jurisdictionCounty.options[27].value="27"
            obj.jurisdictionCounty.options[27].text="Yukon-Koyukuk County" 
            break;

            
         
         	case 3:
			
             
            obj.jurisdictionCounty.length=16
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="3144"
            obj.jurisdictionCounty.options[1].text="Apache County"
            obj.jurisdictionCounty.options[2].value="3145"
            obj.jurisdictionCounty.options[2].text="Cochise County"
            obj.jurisdictionCounty.options[3].value="3146"
            obj.jurisdictionCounty.options[3].text="Coconino County"
            obj.jurisdictionCounty.options[4].value="3147"
            obj.jurisdictionCounty.options[4].text="Gila County"
            obj.jurisdictionCounty.options[5].value="176"
            obj.jurisdictionCounty.options[5].text="Graham County"
            obj.jurisdictionCounty.options[6].value="177"
            obj.jurisdictionCounty.options[6].text="Greenlee County"
            obj.jurisdictionCounty.options[7].value="178"
            obj.jurisdictionCounty.options[7].text="La Paz County"
            obj.jurisdictionCounty.options[8].value="3148"
            obj.jurisdictionCounty.options[8].text="Maricopa County"
            obj.jurisdictionCounty.options[9].value="180"
            obj.jurisdictionCounty.options[9].text="Mohave County"
            obj.jurisdictionCounty.options[10].value="3149"
            obj.jurisdictionCounty.options[10].text="Navajo County"
            obj.jurisdictionCounty.options[11].value="3150"
            obj.jurisdictionCounty.options[11].text="Pima County"
            obj.jurisdictionCounty.options[12].value="183"
            obj.jurisdictionCounty.options[12].text="Pinal County"
            obj.jurisdictionCounty.options[13].value="184"
            obj.jurisdictionCounty.options[13].text="Santa Cruz County"
            obj.jurisdictionCounty.options[14].value="185"
            obj.jurisdictionCounty.options[14].text="Yavapai County"
            obj.jurisdictionCounty.options[15].value="186"
            obj.jurisdictionCounty.options[15].text="Yuma County" 
            break;

            
         
         	case 4:
			
             
            obj.jurisdictionCounty.length=76
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="95"
            obj.jurisdictionCounty.options[1].text="Arkansas County"
            obj.jurisdictionCounty.options[2].value="96"
            obj.jurisdictionCounty.options[2].text="Ashley County"
            obj.jurisdictionCounty.options[3].value="97"
            obj.jurisdictionCounty.options[3].text="Baxter County"
            obj.jurisdictionCounty.options[4].value="98"
            obj.jurisdictionCounty.options[4].text="Benton County"
            obj.jurisdictionCounty.options[5].value="99"
            obj.jurisdictionCounty.options[5].text="Boone County"
            obj.jurisdictionCounty.options[6].value="100"
            obj.jurisdictionCounty.options[6].text="Bradley County"
            obj.jurisdictionCounty.options[7].value="101"
            obj.jurisdictionCounty.options[7].text="Calhoun County"
            obj.jurisdictionCounty.options[8].value="102"
            obj.jurisdictionCounty.options[8].text="Carroll County"
            obj.jurisdictionCounty.options[9].value="103"
            obj.jurisdictionCounty.options[9].text="Chicot County"
            obj.jurisdictionCounty.options[10].value="104"
            obj.jurisdictionCounty.options[10].text="Clark County"
            obj.jurisdictionCounty.options[11].value="105"
            obj.jurisdictionCounty.options[11].text="Clay County"
            obj.jurisdictionCounty.options[12].value="106"
            obj.jurisdictionCounty.options[12].text="Cleburne County"
            obj.jurisdictionCounty.options[13].value="107"
            obj.jurisdictionCounty.options[13].text="Cleveland County"
            obj.jurisdictionCounty.options[14].value="108"
            obj.jurisdictionCounty.options[14].text="Columbia County"
            obj.jurisdictionCounty.options[15].value="109"
            obj.jurisdictionCounty.options[15].text="Conway County"
            obj.jurisdictionCounty.options[16].value="110"
            obj.jurisdictionCounty.options[16].text="Craighead County"
            obj.jurisdictionCounty.options[17].value="111"
            obj.jurisdictionCounty.options[17].text="Crawford County"
            obj.jurisdictionCounty.options[18].value="112"
            obj.jurisdictionCounty.options[18].text="Crittenden County"
            obj.jurisdictionCounty.options[19].value="113"
            obj.jurisdictionCounty.options[19].text="Cross County"
            obj.jurisdictionCounty.options[20].value="114"
            obj.jurisdictionCounty.options[20].text="Dallas County"
            obj.jurisdictionCounty.options[21].value="115"
            obj.jurisdictionCounty.options[21].text="Desha County"
            obj.jurisdictionCounty.options[22].value="116"
            obj.jurisdictionCounty.options[22].text="Drew County"
            obj.jurisdictionCounty.options[23].value="117"
            obj.jurisdictionCounty.options[23].text="Faulkner County"
            obj.jurisdictionCounty.options[24].value="118"
            obj.jurisdictionCounty.options[24].text="Franklin County"
            obj.jurisdictionCounty.options[25].value="119"
            obj.jurisdictionCounty.options[25].text="Fulton County"
            obj.jurisdictionCounty.options[26].value="120"
            obj.jurisdictionCounty.options[26].text="Garland County"
            obj.jurisdictionCounty.options[27].value="121"
            obj.jurisdictionCounty.options[27].text="Grant County"
            obj.jurisdictionCounty.options[28].value="122"
            obj.jurisdictionCounty.options[28].text="Greene County"
            obj.jurisdictionCounty.options[29].value="123"
            obj.jurisdictionCounty.options[29].text="Hempstead County"
            obj.jurisdictionCounty.options[30].value="124"
            obj.jurisdictionCounty.options[30].text="Hot Spring County"
            obj.jurisdictionCounty.options[31].value="125"
            obj.jurisdictionCounty.options[31].text="Howard County"
            obj.jurisdictionCounty.options[32].value="126"
            obj.jurisdictionCounty.options[32].text="Independence County"
            obj.jurisdictionCounty.options[33].value="127"
            obj.jurisdictionCounty.options[33].text="Izard County"
            obj.jurisdictionCounty.options[34].value="128"
            obj.jurisdictionCounty.options[34].text="Jackson County"
            obj.jurisdictionCounty.options[35].value="129"
            obj.jurisdictionCounty.options[35].text="Jefferson County"
            obj.jurisdictionCounty.options[36].value="130"
            obj.jurisdictionCounty.options[36].text="Johnson County"
            obj.jurisdictionCounty.options[37].value="131"
            obj.jurisdictionCounty.options[37].text="Lafayette County"
            obj.jurisdictionCounty.options[38].value="132"
            obj.jurisdictionCounty.options[38].text="Lawrence County"
            obj.jurisdictionCounty.options[39].value="133"
            obj.jurisdictionCounty.options[39].text="Lee County"
            obj.jurisdictionCounty.options[40].value="134"
            obj.jurisdictionCounty.options[40].text="Lincoln County"
            obj.jurisdictionCounty.options[41].value="135"
            obj.jurisdictionCounty.options[41].text="Little River County"
            obj.jurisdictionCounty.options[42].value="136"
            obj.jurisdictionCounty.options[42].text="Logan County"
            obj.jurisdictionCounty.options[43].value="138"
            obj.jurisdictionCounty.options[43].text="Lonoke County"
            obj.jurisdictionCounty.options[44].value="139"
            obj.jurisdictionCounty.options[44].text="Madison County"
            obj.jurisdictionCounty.options[45].value="140"
            obj.jurisdictionCounty.options[45].text="Marion County"
            obj.jurisdictionCounty.options[46].value="141"
            obj.jurisdictionCounty.options[46].text="Miller County"
            obj.jurisdictionCounty.options[47].value="142"
            obj.jurisdictionCounty.options[47].text="Mississippi County"
            obj.jurisdictionCounty.options[48].value="143"
            obj.jurisdictionCounty.options[48].text="Monroe County"
            obj.jurisdictionCounty.options[49].value="144"
            obj.jurisdictionCounty.options[49].text="Montgomery County"
            obj.jurisdictionCounty.options[50].value="145"
            obj.jurisdictionCounty.options[50].text="Nevada County"
            obj.jurisdictionCounty.options[51].value="146"
            obj.jurisdictionCounty.options[51].text="Newton County"
            obj.jurisdictionCounty.options[52].value="147"
            obj.jurisdictionCounty.options[52].text="Ouachita County"
            obj.jurisdictionCounty.options[53].value="148"
            obj.jurisdictionCounty.options[53].text="Perry County"
            obj.jurisdictionCounty.options[54].value="149"
            obj.jurisdictionCounty.options[54].text="Phillips County"
            obj.jurisdictionCounty.options[55].value="150"
            obj.jurisdictionCounty.options[55].text="Pike County"
            obj.jurisdictionCounty.options[56].value="151"
            obj.jurisdictionCounty.options[56].text="Poinsett County"
            obj.jurisdictionCounty.options[57].value="152"
            obj.jurisdictionCounty.options[57].text="Polk County"
            obj.jurisdictionCounty.options[58].value="153"
            obj.jurisdictionCounty.options[58].text="Pope County"
            obj.jurisdictionCounty.options[59].value="154"
            obj.jurisdictionCounty.options[59].text="Prairie County"
            obj.jurisdictionCounty.options[60].value="155"
            obj.jurisdictionCounty.options[60].text="Pulaski County"
            obj.jurisdictionCounty.options[61].value="156"
            obj.jurisdictionCounty.options[61].text="Randolph County"
            obj.jurisdictionCounty.options[62].value="157"
            obj.jurisdictionCounty.options[62].text="Saint Francis County"
            obj.jurisdictionCounty.options[63].value="158"
            obj.jurisdictionCounty.options[63].text="Saline County"
            obj.jurisdictionCounty.options[64].value="159"
            obj.jurisdictionCounty.options[64].text="Scott County"
            obj.jurisdictionCounty.options[65].value="160"
            obj.jurisdictionCounty.options[65].text="Searcy County"
            obj.jurisdictionCounty.options[66].value="161"
            obj.jurisdictionCounty.options[66].text="Sebastian County"
            obj.jurisdictionCounty.options[67].value="162"
            obj.jurisdictionCounty.options[67].text="Sevier County"
            obj.jurisdictionCounty.options[68].value="163"
            obj.jurisdictionCounty.options[68].text="Sharp County"
            obj.jurisdictionCounty.options[69].value="164"
            obj.jurisdictionCounty.options[69].text="Stone County"
            obj.jurisdictionCounty.options[70].value="165"
            obj.jurisdictionCounty.options[70].text="Union County"
            obj.jurisdictionCounty.options[71].value="166"
            obj.jurisdictionCounty.options[71].text="Van Buren County"
            obj.jurisdictionCounty.options[72].value="167"
            obj.jurisdictionCounty.options[72].text="Washington County"
            obj.jurisdictionCounty.options[73].value="168"
            obj.jurisdictionCounty.options[73].text="White County"
            obj.jurisdictionCounty.options[74].value="169"
            obj.jurisdictionCounty.options[74].text="Woodruff County"
            obj.jurisdictionCounty.options[75].value="170"
            obj.jurisdictionCounty.options[75].text="Yell County" 
            break;

            
         
         	case 5:
			
             
            obj.jurisdictionCounty.length=59
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="187"
            obj.jurisdictionCounty.options[1].text="Alameda County"
            obj.jurisdictionCounty.options[2].value="188"
            obj.jurisdictionCounty.options[2].text="Alpine County"
            obj.jurisdictionCounty.options[3].value="189"
            obj.jurisdictionCounty.options[3].text="Amador County"
            obj.jurisdictionCounty.options[4].value="190"
            obj.jurisdictionCounty.options[4].text="Butte County"
            obj.jurisdictionCounty.options[5].value="191"
            obj.jurisdictionCounty.options[5].text="Calaveras County"
            obj.jurisdictionCounty.options[6].value="192"
            obj.jurisdictionCounty.options[6].text="Colusa County"
            obj.jurisdictionCounty.options[7].value="193"
            obj.jurisdictionCounty.options[7].text="Contra Costa County"
            obj.jurisdictionCounty.options[8].value="194"
            obj.jurisdictionCounty.options[8].text="Del Norte County"
            obj.jurisdictionCounty.options[9].value="195"
            obj.jurisdictionCounty.options[9].text="El Dorado County"
            obj.jurisdictionCounty.options[10].value="196"
            obj.jurisdictionCounty.options[10].text="Fresno County"
            obj.jurisdictionCounty.options[11].value="197"
            obj.jurisdictionCounty.options[11].text="Glenn County"
            obj.jurisdictionCounty.options[12].value="198"
            obj.jurisdictionCounty.options[12].text="Humboldt County"
            obj.jurisdictionCounty.options[13].value="199"
            obj.jurisdictionCounty.options[13].text="Imperial County"
            obj.jurisdictionCounty.options[14].value="200"
            obj.jurisdictionCounty.options[14].text="Inyo County"
            obj.jurisdictionCounty.options[15].value="201"
            obj.jurisdictionCounty.options[15].text="Kern County"
            obj.jurisdictionCounty.options[16].value="202"
            obj.jurisdictionCounty.options[16].text="Kings County"
            obj.jurisdictionCounty.options[17].value="203"
            obj.jurisdictionCounty.options[17].text="Lake County"
            obj.jurisdictionCounty.options[18].value="204"
            obj.jurisdictionCounty.options[18].text="Lassen County"
            obj.jurisdictionCounty.options[19].value="205"
            obj.jurisdictionCounty.options[19].text="Los Angeles County"
            obj.jurisdictionCounty.options[20].value="206"
            obj.jurisdictionCounty.options[20].text="Madera County"
            obj.jurisdictionCounty.options[21].value="207"
            obj.jurisdictionCounty.options[21].text="Marin County"
            obj.jurisdictionCounty.options[22].value="208"
            obj.jurisdictionCounty.options[22].text="Mariposa County"
            obj.jurisdictionCounty.options[23].value="209"
            obj.jurisdictionCounty.options[23].text="Mendocino County"
            obj.jurisdictionCounty.options[24].value="210"
            obj.jurisdictionCounty.options[24].text="Merced County"
            obj.jurisdictionCounty.options[25].value="211"
            obj.jurisdictionCounty.options[25].text="Modoc County"
            obj.jurisdictionCounty.options[26].value="212"
            obj.jurisdictionCounty.options[26].text="Mono County"
            obj.jurisdictionCounty.options[27].value="213"
            obj.jurisdictionCounty.options[27].text="Monterey County"
            obj.jurisdictionCounty.options[28].value="214"
            obj.jurisdictionCounty.options[28].text="Napa County"
            obj.jurisdictionCounty.options[29].value="215"
            obj.jurisdictionCounty.options[29].text="Nevada County"
            obj.jurisdictionCounty.options[30].value="216"
            obj.jurisdictionCounty.options[30].text="Orange County"
            obj.jurisdictionCounty.options[31].value="217"
            obj.jurisdictionCounty.options[31].text="Placer County"
            obj.jurisdictionCounty.options[32].value="218"
            obj.jurisdictionCounty.options[32].text="Plumas County"
            obj.jurisdictionCounty.options[33].value="219"
            obj.jurisdictionCounty.options[33].text="Riverside County"
            obj.jurisdictionCounty.options[34].value="220"
            obj.jurisdictionCounty.options[34].text="Sacramento County"
            obj.jurisdictionCounty.options[35].value="221"
            obj.jurisdictionCounty.options[35].text="San Benito County"
            obj.jurisdictionCounty.options[36].value="222"
            obj.jurisdictionCounty.options[36].text="San Bernardino County"
            obj.jurisdictionCounty.options[37].value="223"
            obj.jurisdictionCounty.options[37].text="San Diego County"
            obj.jurisdictionCounty.options[38].value="224"
            obj.jurisdictionCounty.options[38].text="San Francisco County"
            obj.jurisdictionCounty.options[39].value="225"
            obj.jurisdictionCounty.options[39].text="San Joaquin County"
            obj.jurisdictionCounty.options[40].value="226"
            obj.jurisdictionCounty.options[40].text="San Luis Obispo County"
            obj.jurisdictionCounty.options[41].value="227"
            obj.jurisdictionCounty.options[41].text="San Mateo County"
            obj.jurisdictionCounty.options[42].value="228"
            obj.jurisdictionCounty.options[42].text="Santa Barbara County"
            obj.jurisdictionCounty.options[43].value="229"
            obj.jurisdictionCounty.options[43].text="Santa Clara County"
            obj.jurisdictionCounty.options[44].value="230"
            obj.jurisdictionCounty.options[44].text="Santa Cruz County"
            obj.jurisdictionCounty.options[45].value="231"
            obj.jurisdictionCounty.options[45].text="Shasta County"
            obj.jurisdictionCounty.options[46].value="232"
            obj.jurisdictionCounty.options[46].text="Sierra County"
            obj.jurisdictionCounty.options[47].value="233"
            obj.jurisdictionCounty.options[47].text="Siskiyou County"
            obj.jurisdictionCounty.options[48].value="234"
            obj.jurisdictionCounty.options[48].text="Solano County"
            obj.jurisdictionCounty.options[49].value="235"
            obj.jurisdictionCounty.options[49].text="Sonoma County"
            obj.jurisdictionCounty.options[50].value="236"
            obj.jurisdictionCounty.options[50].text="Stanislaus County"
            obj.jurisdictionCounty.options[51].value="237"
            obj.jurisdictionCounty.options[51].text="Sutter County"
            obj.jurisdictionCounty.options[52].value="238"
            obj.jurisdictionCounty.options[52].text="Tehama County"
            obj.jurisdictionCounty.options[53].value="239"
            obj.jurisdictionCounty.options[53].text="Trinity County"
            obj.jurisdictionCounty.options[54].value="240"
            obj.jurisdictionCounty.options[54].text="Tulare County"
            obj.jurisdictionCounty.options[55].value="241"
            obj.jurisdictionCounty.options[55].text="Tuolumne County"
            obj.jurisdictionCounty.options[56].value="242"
            obj.jurisdictionCounty.options[56].text="Ventura County"
            obj.jurisdictionCounty.options[57].value="243"
            obj.jurisdictionCounty.options[57].text="Yolo County"
            obj.jurisdictionCounty.options[58].value="244"
            obj.jurisdictionCounty.options[58].text="Yuba County" 
            break;

            
         
         	case 6:
			
             
            obj.jurisdictionCounty.length=65
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="3151"
            obj.jurisdictionCounty.options[1].text="Adams County"
            obj.jurisdictionCounty.options[2].value="246"
            obj.jurisdictionCounty.options[2].text="Alamosa County"
            obj.jurisdictionCounty.options[3].value="247"
            obj.jurisdictionCounty.options[3].text="Arapahoe County"
            obj.jurisdictionCounty.options[4].value="248"
            obj.jurisdictionCounty.options[4].text="Archuleta County"
            obj.jurisdictionCounty.options[5].value="249"
            obj.jurisdictionCounty.options[5].text="Baca County"
            obj.jurisdictionCounty.options[6].value="250"
            obj.jurisdictionCounty.options[6].text="Bent County"
            obj.jurisdictionCounty.options[7].value="251"
            obj.jurisdictionCounty.options[7].text="Boulder County"
            obj.jurisdictionCounty.options[8].value="3178"
            obj.jurisdictionCounty.options[8].text="Broomfield County"
            obj.jurisdictionCounty.options[9].value="252"
            obj.jurisdictionCounty.options[9].text="Chaffee County"
            obj.jurisdictionCounty.options[10].value="253"
            obj.jurisdictionCounty.options[10].text="Cheyenne County"
            obj.jurisdictionCounty.options[11].value="254"
            obj.jurisdictionCounty.options[11].text="Clear Creek County"
            obj.jurisdictionCounty.options[12].value="255"
            obj.jurisdictionCounty.options[12].text="Conejos County"
            obj.jurisdictionCounty.options[13].value="256"
            obj.jurisdictionCounty.options[13].text="Costilla County"
            obj.jurisdictionCounty.options[14].value="257"
            obj.jurisdictionCounty.options[14].text="Crowley County"
            obj.jurisdictionCounty.options[15].value="258"
            obj.jurisdictionCounty.options[15].text="Custer County"
            obj.jurisdictionCounty.options[16].value="259"
            obj.jurisdictionCounty.options[16].text="Delta County"
            obj.jurisdictionCounty.options[17].value="260"
            obj.jurisdictionCounty.options[17].text="Denver County"
            obj.jurisdictionCounty.options[18].value="261"
            obj.jurisdictionCounty.options[18].text="Dolores County"
            obj.jurisdictionCounty.options[19].value="262"
            obj.jurisdictionCounty.options[19].text="Douglas County"
            obj.jurisdictionCounty.options[20].value="263"
            obj.jurisdictionCounty.options[20].text="Eagle County"
            obj.jurisdictionCounty.options[21].value="264"
            obj.jurisdictionCounty.options[21].text="El Paso County"
            obj.jurisdictionCounty.options[22].value="265"
            obj.jurisdictionCounty.options[22].text="Elbert County"
            obj.jurisdictionCounty.options[23].value="266"
            obj.jurisdictionCounty.options[23].text="Fremont County"
            obj.jurisdictionCounty.options[24].value="267"
            obj.jurisdictionCounty.options[24].text="Garfield County"
            obj.jurisdictionCounty.options[25].value="268"
            obj.jurisdictionCounty.options[25].text="Gilpin County"
            obj.jurisdictionCounty.options[26].value="269"
            obj.jurisdictionCounty.options[26].text="Grand County"
            obj.jurisdictionCounty.options[27].value="270"
            obj.jurisdictionCounty.options[27].text="Gunnison County"
            obj.jurisdictionCounty.options[28].value="271"
            obj.jurisdictionCounty.options[28].text="Hinsdale County"
            obj.jurisdictionCounty.options[29].value="272"
            obj.jurisdictionCounty.options[29].text="Huerfano County"
            obj.jurisdictionCounty.options[30].value="273"
            obj.jurisdictionCounty.options[30].text="Jackson County"
            obj.jurisdictionCounty.options[31].value="274"
            obj.jurisdictionCounty.options[31].text="Jefferson County"
            obj.jurisdictionCounty.options[32].value="275"
            obj.jurisdictionCounty.options[32].text="Kiowa County"
            obj.jurisdictionCounty.options[33].value="276"
            obj.jurisdictionCounty.options[33].text="Kit Carson County"
            obj.jurisdictionCounty.options[34].value="277"
            obj.jurisdictionCounty.options[34].text="La Plata County"
            obj.jurisdictionCounty.options[35].value="278"
            obj.jurisdictionCounty.options[35].text="Lake County"
            obj.jurisdictionCounty.options[36].value="279"
            obj.jurisdictionCounty.options[36].text="Larimer County"
            obj.jurisdictionCounty.options[37].value="280"
            obj.jurisdictionCounty.options[37].text="Las Animas County"
            obj.jurisdictionCounty.options[38].value="281"
            obj.jurisdictionCounty.options[38].text="Lincoln County"
            obj.jurisdictionCounty.options[39].value="282"
            obj.jurisdictionCounty.options[39].text="Logan County"
            obj.jurisdictionCounty.options[40].value="283"
            obj.jurisdictionCounty.options[40].text="Mesa County"
            obj.jurisdictionCounty.options[41].value="284"
            obj.jurisdictionCounty.options[41].text="Mineral County"
            obj.jurisdictionCounty.options[42].value="285"
            obj.jurisdictionCounty.options[42].text="Moffat County"
            obj.jurisdictionCounty.options[43].value="286"
            obj.jurisdictionCounty.options[43].text="Montezuma County"
            obj.jurisdictionCounty.options[44].value="287"
            obj.jurisdictionCounty.options[44].text="Montrose County"
            obj.jurisdictionCounty.options[45].value="288"
            obj.jurisdictionCounty.options[45].text="Morgan County"
            obj.jurisdictionCounty.options[46].value="289"
            obj.jurisdictionCounty.options[46].text="Otero County"
            obj.jurisdictionCounty.options[47].value="290"
            obj.jurisdictionCounty.options[47].text="Ouray County"
            obj.jurisdictionCounty.options[48].value="291"
            obj.jurisdictionCounty.options[48].text="Park County"
            obj.jurisdictionCounty.options[49].value="292"
            obj.jurisdictionCounty.options[49].text="Phillips County"
            obj.jurisdictionCounty.options[50].value="293"
            obj.jurisdictionCounty.options[50].text="Pitkin County"
            obj.jurisdictionCounty.options[51].value="294"
            obj.jurisdictionCounty.options[51].text="Prowers County"
            obj.jurisdictionCounty.options[52].value="295"
            obj.jurisdictionCounty.options[52].text="Pueblo County"
            obj.jurisdictionCounty.options[53].value="296"
            obj.jurisdictionCounty.options[53].text="Rio Blanco County"
            obj.jurisdictionCounty.options[54].value="297"
            obj.jurisdictionCounty.options[54].text="Rio Grande County"
            obj.jurisdictionCounty.options[55].value="298"
            obj.jurisdictionCounty.options[55].text="Routt County"
            obj.jurisdictionCounty.options[56].value="299"
            obj.jurisdictionCounty.options[56].text="Saguache County"
            obj.jurisdictionCounty.options[57].value="300"
            obj.jurisdictionCounty.options[57].text="San Juan County"
            obj.jurisdictionCounty.options[58].value="301"
            obj.jurisdictionCounty.options[58].text="San Miguel County"
            obj.jurisdictionCounty.options[59].value="302"
            obj.jurisdictionCounty.options[59].text="Sedgwick County"
            obj.jurisdictionCounty.options[60].value="303"
            obj.jurisdictionCounty.options[60].text="Summit County"
            obj.jurisdictionCounty.options[61].value="3152"
            obj.jurisdictionCounty.options[61].text="Teller County"
            obj.jurisdictionCounty.options[62].value="305"
            obj.jurisdictionCounty.options[62].text="Washington County"
            obj.jurisdictionCounty.options[63].value="306"
            obj.jurisdictionCounty.options[63].text="Weld County"
            obj.jurisdictionCounty.options[64].value="307"
            obj.jurisdictionCounty.options[64].text="Yuma County" 
            break;

            
         
         	case 7:
			
             
            obj.jurisdictionCounty.length=9
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="308"
            obj.jurisdictionCounty.options[1].text="Fairfield County"
            obj.jurisdictionCounty.options[2].value="309"
            obj.jurisdictionCounty.options[2].text="Hartford County"
            obj.jurisdictionCounty.options[3].value="310"
            obj.jurisdictionCounty.options[3].text="Litchfield County"
            obj.jurisdictionCounty.options[4].value="311"
            obj.jurisdictionCounty.options[4].text="Middlesex County"
            obj.jurisdictionCounty.options[5].value="312"
            obj.jurisdictionCounty.options[5].text="New Haven County"
            obj.jurisdictionCounty.options[6].value="313"
            obj.jurisdictionCounty.options[6].text="New London County"
            obj.jurisdictionCounty.options[7].value="314"
            obj.jurisdictionCounty.options[7].text="Tolland County"
            obj.jurisdictionCounty.options[8].value="315"
            obj.jurisdictionCounty.options[8].text="Windham County" 
            break;

            
         
         	case 8:
			
             
            obj.jurisdictionCounty.length=4
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="317"
            obj.jurisdictionCounty.options[1].text="Kent County"
            obj.jurisdictionCounty.options[2].value="318"
            obj.jurisdictionCounty.options[2].text="New Castle County"
            obj.jurisdictionCounty.options[3].value="319"
            obj.jurisdictionCounty.options[3].text="Sussex County" 
            break;

            
         
         	case 9:
			
             
            obj.jurisdictionCounty.length=2
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="316"
            obj.jurisdictionCounty.options[1].text="District of Columbia County" 
            break;

            
         
         	case 10:
			
             
            obj.jurisdictionCounty.length=68
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="320"
            obj.jurisdictionCounty.options[1].text="Alachua County"
            obj.jurisdictionCounty.options[2].value="321"
            obj.jurisdictionCounty.options[2].text="Baker County"
            obj.jurisdictionCounty.options[3].value="322"
            obj.jurisdictionCounty.options[3].text="Bay County"
            obj.jurisdictionCounty.options[4].value="323"
            obj.jurisdictionCounty.options[4].text="Bradford County"
            obj.jurisdictionCounty.options[5].value="324"
            obj.jurisdictionCounty.options[5].text="Brevard County"
            obj.jurisdictionCounty.options[6].value="325"
            obj.jurisdictionCounty.options[6].text="Broward County"
            obj.jurisdictionCounty.options[7].value="326"
            obj.jurisdictionCounty.options[7].text="Calhoun County"
            obj.jurisdictionCounty.options[8].value="327"
            obj.jurisdictionCounty.options[8].text="Charlotte County"
            obj.jurisdictionCounty.options[9].value="328"
            obj.jurisdictionCounty.options[9].text="Citrus County"
            obj.jurisdictionCounty.options[10].value="329"
            obj.jurisdictionCounty.options[10].text="Clay County"
            obj.jurisdictionCounty.options[11].value="330"
            obj.jurisdictionCounty.options[11].text="Collier County"
            obj.jurisdictionCounty.options[12].value="331"
            obj.jurisdictionCounty.options[12].text="Columbia County"
            obj.jurisdictionCounty.options[13].value="333"
            obj.jurisdictionCounty.options[13].text="DeSoto County"
            obj.jurisdictionCounty.options[14].value="334"
            obj.jurisdictionCounty.options[14].text="Dixie County"
            obj.jurisdictionCounty.options[15].value="335"
            obj.jurisdictionCounty.options[15].text="Duval County"
            obj.jurisdictionCounty.options[16].value="336"
            obj.jurisdictionCounty.options[16].text="Escambia County"
            obj.jurisdictionCounty.options[17].value="337"
            obj.jurisdictionCounty.options[17].text="Flagler County"
            obj.jurisdictionCounty.options[18].value="338"
            obj.jurisdictionCounty.options[18].text="Franklin County"
            obj.jurisdictionCounty.options[19].value="339"
            obj.jurisdictionCounty.options[19].text="Gadsden County"
            obj.jurisdictionCounty.options[20].value="340"
            obj.jurisdictionCounty.options[20].text="Gilchrist County"
            obj.jurisdictionCounty.options[21].value="341"
            obj.jurisdictionCounty.options[21].text="Glades County"
            obj.jurisdictionCounty.options[22].value="342"
            obj.jurisdictionCounty.options[22].text="Gulf County"
            obj.jurisdictionCounty.options[23].value="343"
            obj.jurisdictionCounty.options[23].text="Hamilton County"
            obj.jurisdictionCounty.options[24].value="344"
            obj.jurisdictionCounty.options[24].text="Hardee County"
            obj.jurisdictionCounty.options[25].value="345"
            obj.jurisdictionCounty.options[25].text="Hendry County"
            obj.jurisdictionCounty.options[26].value="346"
            obj.jurisdictionCounty.options[26].text="Hernando County"
            obj.jurisdictionCounty.options[27].value="347"
            obj.jurisdictionCounty.options[27].text="Highlands County"
            obj.jurisdictionCounty.options[28].value="348"
            obj.jurisdictionCounty.options[28].text="Hillsborough County"
            obj.jurisdictionCounty.options[29].value="349"
            obj.jurisdictionCounty.options[29].text="Holmes County"
            obj.jurisdictionCounty.options[30].value="350"
            obj.jurisdictionCounty.options[30].text="Indian River County"
            obj.jurisdictionCounty.options[31].value="351"
            obj.jurisdictionCounty.options[31].text="Jackson County"
            obj.jurisdictionCounty.options[32].value="352"
            obj.jurisdictionCounty.options[32].text="Jefferson County"
            obj.jurisdictionCounty.options[33].value="353"
            obj.jurisdictionCounty.options[33].text="Lafayette County"
            obj.jurisdictionCounty.options[34].value="354"
            obj.jurisdictionCounty.options[34].text="Lake County"
            obj.jurisdictionCounty.options[35].value="355"
            obj.jurisdictionCounty.options[35].text="Lee County"
            obj.jurisdictionCounty.options[36].value="356"
            obj.jurisdictionCounty.options[36].text="Leon County"
            obj.jurisdictionCounty.options[37].value="357"
            obj.jurisdictionCounty.options[37].text="Levy County"
            obj.jurisdictionCounty.options[38].value="358"
            obj.jurisdictionCounty.options[38].text="Liberty County"
            obj.jurisdictionCounty.options[39].value="359"
            obj.jurisdictionCounty.options[39].text="Madison County"
            obj.jurisdictionCounty.options[40].value="360"
            obj.jurisdictionCounty.options[40].text="Manatee County"
            obj.jurisdictionCounty.options[41].value="361"
            obj.jurisdictionCounty.options[41].text="Marion County"
            obj.jurisdictionCounty.options[42].value="362"
            obj.jurisdictionCounty.options[42].text="Martin County"
            obj.jurisdictionCounty.options[43].value="332"
            obj.jurisdictionCounty.options[43].text="Miami-Dade County"
            obj.jurisdictionCounty.options[44].value="363"
            obj.jurisdictionCounty.options[44].text="Monroe County"
            obj.jurisdictionCounty.options[45].value="364"
            obj.jurisdictionCounty.options[45].text="Nassau County"
            obj.jurisdictionCounty.options[46].value="365"
            obj.jurisdictionCounty.options[46].text="Okaloosa County"
            obj.jurisdictionCounty.options[47].value="366"
            obj.jurisdictionCounty.options[47].text="Okeechobee County"
            obj.jurisdictionCounty.options[48].value="367"
            obj.jurisdictionCounty.options[48].text="Orange County"
            obj.jurisdictionCounty.options[49].value="368"
            obj.jurisdictionCounty.options[49].text="Osceola County"
            obj.jurisdictionCounty.options[50].value="369"
            obj.jurisdictionCounty.options[50].text="Palm Beach County"
            obj.jurisdictionCounty.options[51].value="370"
            obj.jurisdictionCounty.options[51].text="Pasco County"
            obj.jurisdictionCounty.options[52].value="371"
            obj.jurisdictionCounty.options[52].text="Pinellas County"
            obj.jurisdictionCounty.options[53].value="372"
            obj.jurisdictionCounty.options[53].text="Polk County"
            obj.jurisdictionCounty.options[54].value="373"
            obj.jurisdictionCounty.options[54].text="Putnam County"
            obj.jurisdictionCounty.options[55].value="374"
            obj.jurisdictionCounty.options[55].text="Saint Johns County"
            obj.jurisdictionCounty.options[56].value="375"
            obj.jurisdictionCounty.options[56].text="Saint Lucie County"
            obj.jurisdictionCounty.options[57].value="376"
            obj.jurisdictionCounty.options[57].text="Santa Rosa County"
            obj.jurisdictionCounty.options[58].value="377"
            obj.jurisdictionCounty.options[58].text="Sarasota County"
            obj.jurisdictionCounty.options[59].value="378"
            obj.jurisdictionCounty.options[59].text="Seminole County"
            obj.jurisdictionCounty.options[60].value="379"
            obj.jurisdictionCounty.options[60].text="Sumter County"
            obj.jurisdictionCounty.options[61].value="380"
            obj.jurisdictionCounty.options[61].text="Suwannee County"
            obj.jurisdictionCounty.options[62].value="381"
            obj.jurisdictionCounty.options[62].text="Taylor County"
            obj.jurisdictionCounty.options[63].value="382"
            obj.jurisdictionCounty.options[63].text="Union County"
            obj.jurisdictionCounty.options[64].value="383"
            obj.jurisdictionCounty.options[64].text="Volusia County"
            obj.jurisdictionCounty.options[65].value="384"
            obj.jurisdictionCounty.options[65].text="Wakulla County"
            obj.jurisdictionCounty.options[66].value="385"
            obj.jurisdictionCounty.options[66].text="Walton County"
            obj.jurisdictionCounty.options[67].value="386"
            obj.jurisdictionCounty.options[67].text="Washington County" 
            break;

            
         
         	case 11:
			
             
            obj.jurisdictionCounty.length=161
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="387"
            obj.jurisdictionCounty.options[1].text="Appling County"
            obj.jurisdictionCounty.options[2].value="388"
            obj.jurisdictionCounty.options[2].text="Atkinson County"
            obj.jurisdictionCounty.options[3].value="389"
            obj.jurisdictionCounty.options[3].text="Bacon County"
            obj.jurisdictionCounty.options[4].value="390"
            obj.jurisdictionCounty.options[4].text="Baker County"
            obj.jurisdictionCounty.options[5].value="3160"
            obj.jurisdictionCounty.options[5].text="Baldwin County"
            obj.jurisdictionCounty.options[6].value="392"
            obj.jurisdictionCounty.options[6].text="Banks County"
            obj.jurisdictionCounty.options[7].value="393"
            obj.jurisdictionCounty.options[7].text="Barrow County"
            obj.jurisdictionCounty.options[8].value="394"
            obj.jurisdictionCounty.options[8].text="Bartow County"
            obj.jurisdictionCounty.options[9].value="395"
            obj.jurisdictionCounty.options[9].text="Ben Hill County"
            obj.jurisdictionCounty.options[10].value="396"
            obj.jurisdictionCounty.options[10].text="Berrien County"
            obj.jurisdictionCounty.options[11].value="397"
            obj.jurisdictionCounty.options[11].text="Bibb County"
            obj.jurisdictionCounty.options[12].value="398"
            obj.jurisdictionCounty.options[12].text="Bleckley County"
            obj.jurisdictionCounty.options[13].value="399"
            obj.jurisdictionCounty.options[13].text="Brantley County"
            obj.jurisdictionCounty.options[14].value="400"
            obj.jurisdictionCounty.options[14].text="Brooks County"
            obj.jurisdictionCounty.options[15].value="401"
            obj.jurisdictionCounty.options[15].text="Bryan County"
            obj.jurisdictionCounty.options[16].value="402"
            obj.jurisdictionCounty.options[16].text="Bulloch County"
            obj.jurisdictionCounty.options[17].value="403"
            obj.jurisdictionCounty.options[17].text="Burke County"
            obj.jurisdictionCounty.options[18].value="404"
            obj.jurisdictionCounty.options[18].text="Butts County"
            obj.jurisdictionCounty.options[19].value="405"
            obj.jurisdictionCounty.options[19].text="Calhoun County"
            obj.jurisdictionCounty.options[20].value="406"
            obj.jurisdictionCounty.options[20].text="Camden County"
            obj.jurisdictionCounty.options[21].value="407"
            obj.jurisdictionCounty.options[21].text="Candler County"
            obj.jurisdictionCounty.options[22].value="408"
            obj.jurisdictionCounty.options[22].text="Carroll County"
            obj.jurisdictionCounty.options[23].value="409"
            obj.jurisdictionCounty.options[23].text="Catoosa County"
            obj.jurisdictionCounty.options[24].value="410"
            obj.jurisdictionCounty.options[24].text="Charlton County"
            obj.jurisdictionCounty.options[25].value="3162"
            obj.jurisdictionCounty.options[25].text="Chatham County"
            obj.jurisdictionCounty.options[26].value="412"
            obj.jurisdictionCounty.options[26].text="Chattahoochee County"
            obj.jurisdictionCounty.options[27].value="413"
            obj.jurisdictionCounty.options[27].text="Chattooga County"
            obj.jurisdictionCounty.options[28].value="414"
            obj.jurisdictionCounty.options[28].text="Cherokee County"
            obj.jurisdictionCounty.options[29].value="415"
            obj.jurisdictionCounty.options[29].text="Clarke County"
            obj.jurisdictionCounty.options[30].value="416"
            obj.jurisdictionCounty.options[30].text="Clay County"
            obj.jurisdictionCounty.options[31].value="417"
            obj.jurisdictionCounty.options[31].text="Clayton County"
            obj.jurisdictionCounty.options[32].value="418"
            obj.jurisdictionCounty.options[32].text="Clinch County"
            obj.jurisdictionCounty.options[33].value="3153"
            obj.jurisdictionCounty.options[33].text="Cobb County"
            obj.jurisdictionCounty.options[34].value="420"
            obj.jurisdictionCounty.options[34].text="Coffee County"
            obj.jurisdictionCounty.options[35].value="421"
            obj.jurisdictionCounty.options[35].text="Colquitt County"
            obj.jurisdictionCounty.options[36].value="422"
            obj.jurisdictionCounty.options[36].text="Columbia County"
            obj.jurisdictionCounty.options[37].value="423"
            obj.jurisdictionCounty.options[37].text="Cook County"
            obj.jurisdictionCounty.options[38].value="424"
            obj.jurisdictionCounty.options[38].text="Coweta County"
            obj.jurisdictionCounty.options[39].value="425"
            obj.jurisdictionCounty.options[39].text="Crawford County"
            obj.jurisdictionCounty.options[40].value="3161"
            obj.jurisdictionCounty.options[40].text="Crisp County"
            obj.jurisdictionCounty.options[41].value="427"
            obj.jurisdictionCounty.options[41].text="Dade County"
            obj.jurisdictionCounty.options[42].value="428"
            obj.jurisdictionCounty.options[42].text="Dawson County"
            obj.jurisdictionCounty.options[43].value="430"
            obj.jurisdictionCounty.options[43].text="Decatur County"
            obj.jurisdictionCounty.options[44].value="429"
            obj.jurisdictionCounty.options[44].text="DeKalb County"
            obj.jurisdictionCounty.options[45].value="431"
            obj.jurisdictionCounty.options[45].text="Dodge County"
            obj.jurisdictionCounty.options[46].value="432"
            obj.jurisdictionCounty.options[46].text="Dooly County"
            obj.jurisdictionCounty.options[47].value="433"
            obj.jurisdictionCounty.options[47].text="Dougherty County"
            obj.jurisdictionCounty.options[48].value="434"
            obj.jurisdictionCounty.options[48].text="Douglas County"
            obj.jurisdictionCounty.options[49].value="435"
            obj.jurisdictionCounty.options[49].text="Early County"
            obj.jurisdictionCounty.options[50].value="436"
            obj.jurisdictionCounty.options[50].text="Echols County"
            obj.jurisdictionCounty.options[51].value="437"
            obj.jurisdictionCounty.options[51].text="Effingham County"
            obj.jurisdictionCounty.options[52].value="438"
            obj.jurisdictionCounty.options[52].text="Elbert County"
            obj.jurisdictionCounty.options[53].value="439"
            obj.jurisdictionCounty.options[53].text="Emanuel County"
            obj.jurisdictionCounty.options[54].value="440"
            obj.jurisdictionCounty.options[54].text="Evans County"
            obj.jurisdictionCounty.options[55].value="441"
            obj.jurisdictionCounty.options[55].text="Fannin County"
            obj.jurisdictionCounty.options[56].value="442"
            obj.jurisdictionCounty.options[56].text="Fayette County"
            obj.jurisdictionCounty.options[57].value="443"
            obj.jurisdictionCounty.options[57].text="Floyd County"
            obj.jurisdictionCounty.options[58].value="444"
            obj.jurisdictionCounty.options[58].text="Forsyth County"
            obj.jurisdictionCounty.options[59].value="445"
            obj.jurisdictionCounty.options[59].text="Franklin County"
            obj.jurisdictionCounty.options[60].value="3154"
            obj.jurisdictionCounty.options[60].text="Fulton County"
            obj.jurisdictionCounty.options[61].value="447"
            obj.jurisdictionCounty.options[61].text="Gilmer County"
            obj.jurisdictionCounty.options[62].value="448"
            obj.jurisdictionCounty.options[62].text="Glascock County"
            obj.jurisdictionCounty.options[63].value="449"
            obj.jurisdictionCounty.options[63].text="Glynn County"
            obj.jurisdictionCounty.options[64].value="450"
            obj.jurisdictionCounty.options[64].text="Gordon County"
            obj.jurisdictionCounty.options[65].value="451"
            obj.jurisdictionCounty.options[65].text="Grady County"
            obj.jurisdictionCounty.options[66].value="452"
            obj.jurisdictionCounty.options[66].text="Greene County"
            obj.jurisdictionCounty.options[67].value="3155"
            obj.jurisdictionCounty.options[67].text="Gwinnett County"
            obj.jurisdictionCounty.options[68].value="454"
            obj.jurisdictionCounty.options[68].text="Habersham County"
            obj.jurisdictionCounty.options[69].value="455"
            obj.jurisdictionCounty.options[69].text="Hall County"
            obj.jurisdictionCounty.options[70].value="456"
            obj.jurisdictionCounty.options[70].text="Hancock County"
            obj.jurisdictionCounty.options[71].value="457"
            obj.jurisdictionCounty.options[71].text="Haralson County"
            obj.jurisdictionCounty.options[72].value="458"
            obj.jurisdictionCounty.options[72].text="Harris County"
            obj.jurisdictionCounty.options[73].value="459"
            obj.jurisdictionCounty.options[73].text="Hart County"
            obj.jurisdictionCounty.options[74].value="460"
            obj.jurisdictionCounty.options[74].text="Heard County"
            obj.jurisdictionCounty.options[75].value="461"
            obj.jurisdictionCounty.options[75].text="Henry County"
            obj.jurisdictionCounty.options[76].value="462"
            obj.jurisdictionCounty.options[76].text="Houston County"
            obj.jurisdictionCounty.options[77].value="463"
            obj.jurisdictionCounty.options[77].text="Irwin County"
            obj.jurisdictionCounty.options[78].value="464"
            obj.jurisdictionCounty.options[78].text="Jackson County"
            obj.jurisdictionCounty.options[79].value="465"
            obj.jurisdictionCounty.options[79].text="Jasper County"
            obj.jurisdictionCounty.options[80].value="466"
            obj.jurisdictionCounty.options[80].text="Jeff Davis County"
            obj.jurisdictionCounty.options[81].value="3163"
            obj.jurisdictionCounty.options[81].text="Jefferson County"
            obj.jurisdictionCounty.options[82].value="468"
            obj.jurisdictionCounty.options[82].text="Jenkins County"
            obj.jurisdictionCounty.options[83].value="469"
            obj.jurisdictionCounty.options[83].text="Johnson County"
            obj.jurisdictionCounty.options[84].value="470"
            obj.jurisdictionCounty.options[84].text="Jones County"
            obj.jurisdictionCounty.options[85].value="471"
            obj.jurisdictionCounty.options[85].text="Lamar County"
            obj.jurisdictionCounty.options[86].value="3169"
            obj.jurisdictionCounty.options[86].text="Lanier County"
            obj.jurisdictionCounty.options[87].value="3170"
            obj.jurisdictionCounty.options[87].text="Laurens County"
            obj.jurisdictionCounty.options[88].value="474"
            obj.jurisdictionCounty.options[88].text="Lee County"
            obj.jurisdictionCounty.options[89].value="3164"
            obj.jurisdictionCounty.options[89].text="Liberty County"
            obj.jurisdictionCounty.options[90].value="3158"
            obj.jurisdictionCounty.options[90].text="Liberty County"
            obj.jurisdictionCounty.options[91].value="476"
            obj.jurisdictionCounty.options[91].text="Lincoln County"
            obj.jurisdictionCounty.options[92].value="477"
            obj.jurisdictionCounty.options[92].text="Long County"
            obj.jurisdictionCounty.options[93].value="3159"
            obj.jurisdictionCounty.options[93].text="Lowndes County"
            obj.jurisdictionCounty.options[94].value="3165"
            obj.jurisdictionCounty.options[94].text="Lumpkin County"
            obj.jurisdictionCounty.options[95].value="480"
            obj.jurisdictionCounty.options[95].text="Macon County"
            obj.jurisdictionCounty.options[96].value="481"
            obj.jurisdictionCounty.options[96].text="Madison County"
            obj.jurisdictionCounty.options[97].value="482"
            obj.jurisdictionCounty.options[97].text="Marion County"
            obj.jurisdictionCounty.options[98].value="483"
            obj.jurisdictionCounty.options[98].text="McDuffie County"
            obj.jurisdictionCounty.options[99].value="484"
            obj.jurisdictionCounty.options[99].text="McIntosh County"
            obj.jurisdictionCounty.options[100].value="485"
            obj.jurisdictionCounty.options[100].text="Meriwether County"
            obj.jurisdictionCounty.options[101].value="486"
            obj.jurisdictionCounty.options[101].text="Miller County"
            obj.jurisdictionCounty.options[102].value="487"
            obj.jurisdictionCounty.options[102].text="Mitchell County"
            obj.jurisdictionCounty.options[103].value="488"
            obj.jurisdictionCounty.options[103].text="Monroe County"
            obj.jurisdictionCounty.options[104].value="489"
            obj.jurisdictionCounty.options[104].text="Montgomery County"
            obj.jurisdictionCounty.options[105].value="490"
            obj.jurisdictionCounty.options[105].text="Morgan County"
            obj.jurisdictionCounty.options[106].value="491"
            obj.jurisdictionCounty.options[106].text="Murray County"
            obj.jurisdictionCounty.options[107].value="3157"
            obj.jurisdictionCounty.options[107].text="Muscogee County"
            obj.jurisdictionCounty.options[108].value="493"
            obj.jurisdictionCounty.options[108].text="Newton County"
            obj.jurisdictionCounty.options[109].value="494"
            obj.jurisdictionCounty.options[109].text="Oconee County"
            obj.jurisdictionCounty.options[110].value="495"
            obj.jurisdictionCounty.options[110].text="Oglethorpe County"
            obj.jurisdictionCounty.options[111].value="496"
            obj.jurisdictionCounty.options[111].text="Paulding County"
            obj.jurisdictionCounty.options[112].value="3167"
            obj.jurisdictionCounty.options[112].text="Peach County"
            obj.jurisdictionCounty.options[113].value="498"
            obj.jurisdictionCounty.options[113].text="Pickens County"
            obj.jurisdictionCounty.options[114].value="499"
            obj.jurisdictionCounty.options[114].text="Pierce County"
            obj.jurisdictionCounty.options[115].value="3166"
            obj.jurisdictionCounty.options[115].text="Pike County"
            obj.jurisdictionCounty.options[116].value="501"
            obj.jurisdictionCounty.options[116].text="Polk County"
            obj.jurisdictionCounty.options[117].value="502"
            obj.jurisdictionCounty.options[117].text="Pulaski County"
            obj.jurisdictionCounty.options[118].value="503"
            obj.jurisdictionCounty.options[118].text="Putnam County"
            obj.jurisdictionCounty.options[119].value="504"
            obj.jurisdictionCounty.options[119].text="Quitman County"
            obj.jurisdictionCounty.options[120].value="505"
            obj.jurisdictionCounty.options[120].text="Rabun County"
            obj.jurisdictionCounty.options[121].value="506"
            obj.jurisdictionCounty.options[121].text="Randolph County"
            obj.jurisdictionCounty.options[122].value="507"
            obj.jurisdictionCounty.options[122].text="Richmond County"
            obj.jurisdictionCounty.options[123].value="508"
            obj.jurisdictionCounty.options[123].text="Rockdale County"
            obj.jurisdictionCounty.options[124].value="509"
            obj.jurisdictionCounty.options[124].text="Schley County"
            obj.jurisdictionCounty.options[125].value="510"
            obj.jurisdictionCounty.options[125].text="Screven County"
            obj.jurisdictionCounty.options[126].value="511"
            obj.jurisdictionCounty.options[126].text="Seminole County"
            obj.jurisdictionCounty.options[127].value="512"
            obj.jurisdictionCounty.options[127].text="Spalding County"
            obj.jurisdictionCounty.options[128].value="513"
            obj.jurisdictionCounty.options[128].text="Stephens County"
            obj.jurisdictionCounty.options[129].value="514"
            obj.jurisdictionCounty.options[129].text="Stewart County"
            obj.jurisdictionCounty.options[130].value="515"
            obj.jurisdictionCounty.options[130].text="Sumter County"
            obj.jurisdictionCounty.options[131].value="516"
            obj.jurisdictionCounty.options[131].text="Talbot County"
            obj.jurisdictionCounty.options[132].value="517"
            obj.jurisdictionCounty.options[132].text="Taliaferro County"
            obj.jurisdictionCounty.options[133].value="518"
            obj.jurisdictionCounty.options[133].text="Tattnall County"
            obj.jurisdictionCounty.options[134].value="519"
            obj.jurisdictionCounty.options[134].text="Taylor County"
            obj.jurisdictionCounty.options[135].value="520"
            obj.jurisdictionCounty.options[135].text="Telfair County"
            obj.jurisdictionCounty.options[136].value="521"
            obj.jurisdictionCounty.options[136].text="Terrell County"
            obj.jurisdictionCounty.options[137].value="522"
            obj.jurisdictionCounty.options[137].text="Thomas County"
            obj.jurisdictionCounty.options[138].value="523"
            obj.jurisdictionCounty.options[138].text="Tift County"
            obj.jurisdictionCounty.options[139].value="524"
            obj.jurisdictionCounty.options[139].text="Toombs County"
            obj.jurisdictionCounty.options[140].value="525"
            obj.jurisdictionCounty.options[140].text="Towns County"
            obj.jurisdictionCounty.options[141].value="526"
            obj.jurisdictionCounty.options[141].text="Treutlen County"
            obj.jurisdictionCounty.options[142].value="527"
            obj.jurisdictionCounty.options[142].text="Troup County"
            obj.jurisdictionCounty.options[143].value="528"
            obj.jurisdictionCounty.options[143].text="Turner County"
            obj.jurisdictionCounty.options[144].value="529"
            obj.jurisdictionCounty.options[144].text="Twiggs County"
            obj.jurisdictionCounty.options[145].value="530"
            obj.jurisdictionCounty.options[145].text="Union County"
            obj.jurisdictionCounty.options[146].value="531"
            obj.jurisdictionCounty.options[146].text="Upson County"
            obj.jurisdictionCounty.options[147].value="532"
            obj.jurisdictionCounty.options[147].text="Walker County"
            obj.jurisdictionCounty.options[148].value="533"
            obj.jurisdictionCounty.options[148].text="Walton County"
            obj.jurisdictionCounty.options[149].value="534"
            obj.jurisdictionCounty.options[149].text="Ware County"
            obj.jurisdictionCounty.options[150].value="535"
            obj.jurisdictionCounty.options[150].text="Warren County"
            obj.jurisdictionCounty.options[151].value="536"
            obj.jurisdictionCounty.options[151].text="Washington County"
            obj.jurisdictionCounty.options[152].value="537"
            obj.jurisdictionCounty.options[152].text="Wayne County"
            obj.jurisdictionCounty.options[153].value="538"
            obj.jurisdictionCounty.options[153].text="Webster County"
            obj.jurisdictionCounty.options[154].value="539"
            obj.jurisdictionCounty.options[154].text="Wheeler County"
            obj.jurisdictionCounty.options[155].value="540"
            obj.jurisdictionCounty.options[155].text="White County"
            obj.jurisdictionCounty.options[156].value="541"
            obj.jurisdictionCounty.options[156].text="Whitfield County"
            obj.jurisdictionCounty.options[157].value="542"
            obj.jurisdictionCounty.options[157].text="Wilcox County"
            obj.jurisdictionCounty.options[158].value="543"
            obj.jurisdictionCounty.options[158].text="Wilkes County"
            obj.jurisdictionCounty.options[159].value="544"
            obj.jurisdictionCounty.options[159].text="Wilkinson County"
            obj.jurisdictionCounty.options[160].value="545"
            obj.jurisdictionCounty.options[160].text="Worth County" 
            break;

            
         
         	case 12:
			
             
            obj.jurisdictionCounty.length=6
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="546"
            obj.jurisdictionCounty.options[1].text="Hawaii County"
            obj.jurisdictionCounty.options[2].value="547"
            obj.jurisdictionCounty.options[2].text="Honolulu County"
            obj.jurisdictionCounty.options[3].value="548"
            obj.jurisdictionCounty.options[3].text="Kalawao County"
            obj.jurisdictionCounty.options[4].value="549"
            obj.jurisdictionCounty.options[4].text="Kauai County"
            obj.jurisdictionCounty.options[5].value="550"
            obj.jurisdictionCounty.options[5].text="Maui County" 
            break;

            
         
         	case 13:
			
             
            obj.jurisdictionCounty.length=45
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="651"
            obj.jurisdictionCounty.options[1].text="Ada County"
            obj.jurisdictionCounty.options[2].value="652"
            obj.jurisdictionCounty.options[2].text="Adams County"
            obj.jurisdictionCounty.options[3].value="653"
            obj.jurisdictionCounty.options[3].text="Bannock County"
            obj.jurisdictionCounty.options[4].value="654"
            obj.jurisdictionCounty.options[4].text="Bear Lake County"
            obj.jurisdictionCounty.options[5].value="655"
            obj.jurisdictionCounty.options[5].text="Benewah County"
            obj.jurisdictionCounty.options[6].value="656"
            obj.jurisdictionCounty.options[6].text="Bingham County"
            obj.jurisdictionCounty.options[7].value="657"
            obj.jurisdictionCounty.options[7].text="Blaine County"
            obj.jurisdictionCounty.options[8].value="658"
            obj.jurisdictionCounty.options[8].text="Boise County"
            obj.jurisdictionCounty.options[9].value="659"
            obj.jurisdictionCounty.options[9].text="Bonner County"
            obj.jurisdictionCounty.options[10].value="660"
            obj.jurisdictionCounty.options[10].text="Bonneville County"
            obj.jurisdictionCounty.options[11].value="661"
            obj.jurisdictionCounty.options[11].text="Boundary County"
            obj.jurisdictionCounty.options[12].value="662"
            obj.jurisdictionCounty.options[12].text="Butte County"
            obj.jurisdictionCounty.options[13].value="663"
            obj.jurisdictionCounty.options[13].text="Camas County"
            obj.jurisdictionCounty.options[14].value="664"
            obj.jurisdictionCounty.options[14].text="Canyon County"
            obj.jurisdictionCounty.options[15].value="665"
            obj.jurisdictionCounty.options[15].text="Caribou County"
            obj.jurisdictionCounty.options[16].value="666"
            obj.jurisdictionCounty.options[16].text="Cassia County"
            obj.jurisdictionCounty.options[17].value="667"
            obj.jurisdictionCounty.options[17].text="Clark County"
            obj.jurisdictionCounty.options[18].value="668"
            obj.jurisdictionCounty.options[18].text="Clearwater County"
            obj.jurisdictionCounty.options[19].value="669"
            obj.jurisdictionCounty.options[19].text="Custer County"
            obj.jurisdictionCounty.options[20].value="670"
            obj.jurisdictionCounty.options[20].text="Elmore County"
            obj.jurisdictionCounty.options[21].value="671"
            obj.jurisdictionCounty.options[21].text="Franklin County"
            obj.jurisdictionCounty.options[22].value="672"
            obj.jurisdictionCounty.options[22].text="Fremont County"
            obj.jurisdictionCounty.options[23].value="673"
            obj.jurisdictionCounty.options[23].text="Gem County"
            obj.jurisdictionCounty.options[24].value="674"
            obj.jurisdictionCounty.options[24].text="Gooding County"
            obj.jurisdictionCounty.options[25].value="675"
            obj.jurisdictionCounty.options[25].text="Idaho County"
            obj.jurisdictionCounty.options[26].value="676"
            obj.jurisdictionCounty.options[26].text="Jefferson County"
            obj.jurisdictionCounty.options[27].value="677"
            obj.jurisdictionCounty.options[27].text="Jerome County"
            obj.jurisdictionCounty.options[28].value="678"
            obj.jurisdictionCounty.options[28].text="Kootenai County"
            obj.jurisdictionCounty.options[29].value="679"
            obj.jurisdictionCounty.options[29].text="Latah County"
            obj.jurisdictionCounty.options[30].value="680"
            obj.jurisdictionCounty.options[30].text="Lemhi County"
            obj.jurisdictionCounty.options[31].value="681"
            obj.jurisdictionCounty.options[31].text="Lewis County"
            obj.jurisdictionCounty.options[32].value="682"
            obj.jurisdictionCounty.options[32].text="Lincoln County"
            obj.jurisdictionCounty.options[33].value="683"
            obj.jurisdictionCounty.options[33].text="Madison County"
            obj.jurisdictionCounty.options[34].value="684"
            obj.jurisdictionCounty.options[34].text="Minidoka County"
            obj.jurisdictionCounty.options[35].value="685"
            obj.jurisdictionCounty.options[35].text="Nez Perce County"
            obj.jurisdictionCounty.options[36].value="686"
            obj.jurisdictionCounty.options[36].text="Oneida County"
            obj.jurisdictionCounty.options[37].value="687"
            obj.jurisdictionCounty.options[37].text="Owyhee County"
            obj.jurisdictionCounty.options[38].value="688"
            obj.jurisdictionCounty.options[38].text="Payette County"
            obj.jurisdictionCounty.options[39].value="689"
            obj.jurisdictionCounty.options[39].text="Power County"
            obj.jurisdictionCounty.options[40].value="690"
            obj.jurisdictionCounty.options[40].text="Shoshone County"
            obj.jurisdictionCounty.options[41].value="691"
            obj.jurisdictionCounty.options[41].text="Teton County"
            obj.jurisdictionCounty.options[42].value="692"
            obj.jurisdictionCounty.options[42].text="Twin Falls County"
            obj.jurisdictionCounty.options[43].value="693"
            obj.jurisdictionCounty.options[43].text="Valley County"
            obj.jurisdictionCounty.options[44].value="694"
            obj.jurisdictionCounty.options[44].text="Washington County" 
            break;

            
         
         	case 14:
			
             
            obj.jurisdictionCounty.length=103
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="695"
            obj.jurisdictionCounty.options[1].text="Adams County"
            obj.jurisdictionCounty.options[2].value="696"
            obj.jurisdictionCounty.options[2].text="Alexander County"
            obj.jurisdictionCounty.options[3].value="697"
            obj.jurisdictionCounty.options[3].text="Bond County"
            obj.jurisdictionCounty.options[4].value="698"
            obj.jurisdictionCounty.options[4].text="Boone County"
            obj.jurisdictionCounty.options[5].value="699"
            obj.jurisdictionCounty.options[5].text="Brown County"
            obj.jurisdictionCounty.options[6].value="700"
            obj.jurisdictionCounty.options[6].text="Bureau County"
            obj.jurisdictionCounty.options[7].value="701"
            obj.jurisdictionCounty.options[7].text="Calhoun County"
            obj.jurisdictionCounty.options[8].value="702"
            obj.jurisdictionCounty.options[8].text="Carroll County"
            obj.jurisdictionCounty.options[9].value="703"
            obj.jurisdictionCounty.options[9].text="Cass County"
            obj.jurisdictionCounty.options[10].value="704"
            obj.jurisdictionCounty.options[10].text="Champaign County"
            obj.jurisdictionCounty.options[11].value="705"
            obj.jurisdictionCounty.options[11].text="Christian County"
            obj.jurisdictionCounty.options[12].value="706"
            obj.jurisdictionCounty.options[12].text="Clark County"
            obj.jurisdictionCounty.options[13].value="707"
            obj.jurisdictionCounty.options[13].text="Clay County"
            obj.jurisdictionCounty.options[14].value="708"
            obj.jurisdictionCounty.options[14].text="Clinton County"
            obj.jurisdictionCounty.options[15].value="709"
            obj.jurisdictionCounty.options[15].text="Coles County"
            obj.jurisdictionCounty.options[16].value="710"
            obj.jurisdictionCounty.options[16].text="Cook County"
            obj.jurisdictionCounty.options[17].value="711"
            obj.jurisdictionCounty.options[17].text="Crawford County"
            obj.jurisdictionCounty.options[18].value="712"
            obj.jurisdictionCounty.options[18].text="Cumberland County"
            obj.jurisdictionCounty.options[19].value="713"
            obj.jurisdictionCounty.options[19].text="DeKalb County"
            obj.jurisdictionCounty.options[20].value="714"
            obj.jurisdictionCounty.options[20].text="DeWitt County"
            obj.jurisdictionCounty.options[21].value="715"
            obj.jurisdictionCounty.options[21].text="Douglas County"
            obj.jurisdictionCounty.options[22].value="716"
            obj.jurisdictionCounty.options[22].text="DuPage County"
            obj.jurisdictionCounty.options[23].value="717"
            obj.jurisdictionCounty.options[23].text="Edgar County"
            obj.jurisdictionCounty.options[24].value="718"
            obj.jurisdictionCounty.options[24].text="Edwards County"
            obj.jurisdictionCounty.options[25].value="719"
            obj.jurisdictionCounty.options[25].text="Effingham County"
            obj.jurisdictionCounty.options[26].value="720"
            obj.jurisdictionCounty.options[26].text="Fayette County"
            obj.jurisdictionCounty.options[27].value="721"
            obj.jurisdictionCounty.options[27].text="Ford County"
            obj.jurisdictionCounty.options[28].value="722"
            obj.jurisdictionCounty.options[28].text="Franklin County"
            obj.jurisdictionCounty.options[29].value="723"
            obj.jurisdictionCounty.options[29].text="Fulton County"
            obj.jurisdictionCounty.options[30].value="724"
            obj.jurisdictionCounty.options[30].text="Gallatin County"
            obj.jurisdictionCounty.options[31].value="725"
            obj.jurisdictionCounty.options[31].text="Greene County"
            obj.jurisdictionCounty.options[32].value="726"
            obj.jurisdictionCounty.options[32].text="Grundy County"
            obj.jurisdictionCounty.options[33].value="727"
            obj.jurisdictionCounty.options[33].text="Hamilton County"
            obj.jurisdictionCounty.options[34].value="728"
            obj.jurisdictionCounty.options[34].text="Hancock County"
            obj.jurisdictionCounty.options[35].value="729"
            obj.jurisdictionCounty.options[35].text="Hardin County"
            obj.jurisdictionCounty.options[36].value="730"
            obj.jurisdictionCounty.options[36].text="Henderson County"
            obj.jurisdictionCounty.options[37].value="731"
            obj.jurisdictionCounty.options[37].text="Henry County"
            obj.jurisdictionCounty.options[38].value="732"
            obj.jurisdictionCounty.options[38].text="Iroquis County"
            obj.jurisdictionCounty.options[39].value="733"
            obj.jurisdictionCounty.options[39].text="Jackson County"
            obj.jurisdictionCounty.options[40].value="734"
            obj.jurisdictionCounty.options[40].text="Jasper County"
            obj.jurisdictionCounty.options[41].value="735"
            obj.jurisdictionCounty.options[41].text="Jefferson County"
            obj.jurisdictionCounty.options[42].value="736"
            obj.jurisdictionCounty.options[42].text="Jersey County"
            obj.jurisdictionCounty.options[43].value="737"
            obj.jurisdictionCounty.options[43].text="Jo Daviess County"
            obj.jurisdictionCounty.options[44].value="738"
            obj.jurisdictionCounty.options[44].text="Johnson County"
            obj.jurisdictionCounty.options[45].value="739"
            obj.jurisdictionCounty.options[45].text="Kane County"
            obj.jurisdictionCounty.options[46].value="740"
            obj.jurisdictionCounty.options[46].text="Kankakee County"
            obj.jurisdictionCounty.options[47].value="741"
            obj.jurisdictionCounty.options[47].text="Kendall County"
            obj.jurisdictionCounty.options[48].value="742"
            obj.jurisdictionCounty.options[48].text="Knox County"
            obj.jurisdictionCounty.options[49].value="743"
            obj.jurisdictionCounty.options[49].text="La Salle County"
            obj.jurisdictionCounty.options[50].value="744"
            obj.jurisdictionCounty.options[50].text="Lake County"
            obj.jurisdictionCounty.options[51].value="745"
            obj.jurisdictionCounty.options[51].text="Lawrence County"
            obj.jurisdictionCounty.options[52].value="746"
            obj.jurisdictionCounty.options[52].text="Lee County"
            obj.jurisdictionCounty.options[53].value="747"
            obj.jurisdictionCounty.options[53].text="Livingston County"
            obj.jurisdictionCounty.options[54].value="748"
            obj.jurisdictionCounty.options[54].text="Logan County"
            obj.jurisdictionCounty.options[55].value="749"
            obj.jurisdictionCounty.options[55].text="Macon County"
            obj.jurisdictionCounty.options[56].value="750"
            obj.jurisdictionCounty.options[56].text="Macoupin County"
            obj.jurisdictionCounty.options[57].value="751"
            obj.jurisdictionCounty.options[57].text="Madison County"
            obj.jurisdictionCounty.options[58].value="752"
            obj.jurisdictionCounty.options[58].text="Marion County"
            obj.jurisdictionCounty.options[59].value="753"
            obj.jurisdictionCounty.options[59].text="Marshall County"
            obj.jurisdictionCounty.options[60].value="754"
            obj.jurisdictionCounty.options[60].text="Mason County"
            obj.jurisdictionCounty.options[61].value="755"
            obj.jurisdictionCounty.options[61].text="Massac County"
            obj.jurisdictionCounty.options[62].value="756"
            obj.jurisdictionCounty.options[62].text="McDonough County"
            obj.jurisdictionCounty.options[63].value="757"
            obj.jurisdictionCounty.options[63].text="McHenry County"
            obj.jurisdictionCounty.options[64].value="758"
            obj.jurisdictionCounty.options[64].text="McLean County"
            obj.jurisdictionCounty.options[65].value="759"
            obj.jurisdictionCounty.options[65].text="Menard County"
            obj.jurisdictionCounty.options[66].value="760"
            obj.jurisdictionCounty.options[66].text="Mercer County"
            obj.jurisdictionCounty.options[67].value="761"
            obj.jurisdictionCounty.options[67].text="Monroe County"
            obj.jurisdictionCounty.options[68].value="762"
            obj.jurisdictionCounty.options[68].text="Montgomery County"
            obj.jurisdictionCounty.options[69].value="763"
            obj.jurisdictionCounty.options[69].text="Morgan County"
            obj.jurisdictionCounty.options[70].value="764"
            obj.jurisdictionCounty.options[70].text="Moultrie County"
            obj.jurisdictionCounty.options[71].value="765"
            obj.jurisdictionCounty.options[71].text="Ogle County"
            obj.jurisdictionCounty.options[72].value="766"
            obj.jurisdictionCounty.options[72].text="Peoria County"
            obj.jurisdictionCounty.options[73].value="767"
            obj.jurisdictionCounty.options[73].text="Perry County"
            obj.jurisdictionCounty.options[74].value="768"
            obj.jurisdictionCounty.options[74].text="Piatt County"
            obj.jurisdictionCounty.options[75].value="769"
            obj.jurisdictionCounty.options[75].text="Pike County"
            obj.jurisdictionCounty.options[76].value="770"
            obj.jurisdictionCounty.options[76].text="Pope County"
            obj.jurisdictionCounty.options[77].value="771"
            obj.jurisdictionCounty.options[77].text="Pulaski County"
            obj.jurisdictionCounty.options[78].value="772"
            obj.jurisdictionCounty.options[78].text="Putnam County"
            obj.jurisdictionCounty.options[79].value="773"
            obj.jurisdictionCounty.options[79].text="Randolph County"
            obj.jurisdictionCounty.options[80].value="774"
            obj.jurisdictionCounty.options[80].text="Richland County"
            obj.jurisdictionCounty.options[81].value="775"
            obj.jurisdictionCounty.options[81].text="Rock Island County"
            obj.jurisdictionCounty.options[82].value="776"
            obj.jurisdictionCounty.options[82].text="Saint Clair County"
            obj.jurisdictionCounty.options[83].value="777"
            obj.jurisdictionCounty.options[83].text="Saline County"
            obj.jurisdictionCounty.options[84].value="778"
            obj.jurisdictionCounty.options[84].text="Sangamon County"
            obj.jurisdictionCounty.options[85].value="779"
            obj.jurisdictionCounty.options[85].text="Schuyler County"
            obj.jurisdictionCounty.options[86].value="780"
            obj.jurisdictionCounty.options[86].text="Scott County"
            obj.jurisdictionCounty.options[87].value="781"
            obj.jurisdictionCounty.options[87].text="Shelby County"
            obj.jurisdictionCounty.options[88].value="782"
            obj.jurisdictionCounty.options[88].text="Stark County"
            obj.jurisdictionCounty.options[89].value="783"
            obj.jurisdictionCounty.options[89].text="Stephenson County"
            obj.jurisdictionCounty.options[90].value="784"
            obj.jurisdictionCounty.options[90].text="Tazewell County"
            obj.jurisdictionCounty.options[91].value="785"
            obj.jurisdictionCounty.options[91].text="Union County"
            obj.jurisdictionCounty.options[92].value="786"
            obj.jurisdictionCounty.options[92].text="Vermillion County"
            obj.jurisdictionCounty.options[93].value="787"
            obj.jurisdictionCounty.options[93].text="Wabash County"
            obj.jurisdictionCounty.options[94].value="788"
            obj.jurisdictionCounty.options[94].text="Warren County"
            obj.jurisdictionCounty.options[95].value="789"
            obj.jurisdictionCounty.options[95].text="Washington County"
            obj.jurisdictionCounty.options[96].value="790"
            obj.jurisdictionCounty.options[96].text="Wayne County"
            obj.jurisdictionCounty.options[97].value="791"
            obj.jurisdictionCounty.options[97].text="White County"
            obj.jurisdictionCounty.options[98].value="792"
            obj.jurisdictionCounty.options[98].text="Whiteside County"
            obj.jurisdictionCounty.options[99].value="793"
            obj.jurisdictionCounty.options[99].text="Will County"
            obj.jurisdictionCounty.options[100].value="794"
            obj.jurisdictionCounty.options[100].text="Williamson County"
            obj.jurisdictionCounty.options[101].value="795"
            obj.jurisdictionCounty.options[101].text="Winnebago County"
            obj.jurisdictionCounty.options[102].value="796"
            obj.jurisdictionCounty.options[102].text="Woodford County" 
            break;

            
         
         	case 15:
			
             
            obj.jurisdictionCounty.length=93
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="797"
            obj.jurisdictionCounty.options[1].text="Adams County"
            obj.jurisdictionCounty.options[2].value="798"
            obj.jurisdictionCounty.options[2].text="Allen County"
            obj.jurisdictionCounty.options[3].value="799"
            obj.jurisdictionCounty.options[3].text="Bartholomew County"
            obj.jurisdictionCounty.options[4].value="800"
            obj.jurisdictionCounty.options[4].text="Benton County"
            obj.jurisdictionCounty.options[5].value="801"
            obj.jurisdictionCounty.options[5].text="Blackford County"
            obj.jurisdictionCounty.options[6].value="802"
            obj.jurisdictionCounty.options[6].text="Boone County"
            obj.jurisdictionCounty.options[7].value="803"
            obj.jurisdictionCounty.options[7].text="Brown County"
            obj.jurisdictionCounty.options[8].value="804"
            obj.jurisdictionCounty.options[8].text="Carroll County"
            obj.jurisdictionCounty.options[9].value="805"
            obj.jurisdictionCounty.options[9].text="Cass County"
            obj.jurisdictionCounty.options[10].value="806"
            obj.jurisdictionCounty.options[10].text="Clark County"
            obj.jurisdictionCounty.options[11].value="807"
            obj.jurisdictionCounty.options[11].text="Clay County"
            obj.jurisdictionCounty.options[12].value="808"
            obj.jurisdictionCounty.options[12].text="Clinton County"
            obj.jurisdictionCounty.options[13].value="809"
            obj.jurisdictionCounty.options[13].text="Crawford County"
            obj.jurisdictionCounty.options[14].value="810"
            obj.jurisdictionCounty.options[14].text="Daviess County"
            obj.jurisdictionCounty.options[15].value="812"
            obj.jurisdictionCounty.options[15].text="Dearborn County"
            obj.jurisdictionCounty.options[16].value="813"
            obj.jurisdictionCounty.options[16].text="Decatur County"
            obj.jurisdictionCounty.options[17].value="811"
            obj.jurisdictionCounty.options[17].text="DeKalb County"
            obj.jurisdictionCounty.options[18].value="814"
            obj.jurisdictionCounty.options[18].text="Delaware County"
            obj.jurisdictionCounty.options[19].value="815"
            obj.jurisdictionCounty.options[19].text="Dubois County"
            obj.jurisdictionCounty.options[20].value="816"
            obj.jurisdictionCounty.options[20].text="Elkhart County"
            obj.jurisdictionCounty.options[21].value="817"
            obj.jurisdictionCounty.options[21].text="Fayette County"
            obj.jurisdictionCounty.options[22].value="818"
            obj.jurisdictionCounty.options[22].text="Floyd County"
            obj.jurisdictionCounty.options[23].value="819"
            obj.jurisdictionCounty.options[23].text="Fountain County"
            obj.jurisdictionCounty.options[24].value="820"
            obj.jurisdictionCounty.options[24].text="Franklin County"
            obj.jurisdictionCounty.options[25].value="821"
            obj.jurisdictionCounty.options[25].text="Fulton County"
            obj.jurisdictionCounty.options[26].value="822"
            obj.jurisdictionCounty.options[26].text="Gibson County"
            obj.jurisdictionCounty.options[27].value="823"
            obj.jurisdictionCounty.options[27].text="Grant County"
            obj.jurisdictionCounty.options[28].value="824"
            obj.jurisdictionCounty.options[28].text="Greene County"
            obj.jurisdictionCounty.options[29].value="825"
            obj.jurisdictionCounty.options[29].text="Hamilton County"
            obj.jurisdictionCounty.options[30].value="826"
            obj.jurisdictionCounty.options[30].text="Hancock County"
            obj.jurisdictionCounty.options[31].value="827"
            obj.jurisdictionCounty.options[31].text="Harrison County"
            obj.jurisdictionCounty.options[32].value="828"
            obj.jurisdictionCounty.options[32].text="Hendricks County"
            obj.jurisdictionCounty.options[33].value="829"
            obj.jurisdictionCounty.options[33].text="Henry County"
            obj.jurisdictionCounty.options[34].value="830"
            obj.jurisdictionCounty.options[34].text="Howard County"
            obj.jurisdictionCounty.options[35].value="831"
            obj.jurisdictionCounty.options[35].text="Huntington County"
            obj.jurisdictionCounty.options[36].value="832"
            obj.jurisdictionCounty.options[36].text="Jackson County"
            obj.jurisdictionCounty.options[37].value="833"
            obj.jurisdictionCounty.options[37].text="Jasper County"
            obj.jurisdictionCounty.options[38].value="834"
            obj.jurisdictionCounty.options[38].text="Jay County"
            obj.jurisdictionCounty.options[39].value="835"
            obj.jurisdictionCounty.options[39].text="Jefferson County"
            obj.jurisdictionCounty.options[40].value="836"
            obj.jurisdictionCounty.options[40].text="Jennings County"
            obj.jurisdictionCounty.options[41].value="837"
            obj.jurisdictionCounty.options[41].text="Johnson County"
            obj.jurisdictionCounty.options[42].value="838"
            obj.jurisdictionCounty.options[42].text="Knox County"
            obj.jurisdictionCounty.options[43].value="839"
            obj.jurisdictionCounty.options[43].text="Kosciusko County"
            obj.jurisdictionCounty.options[44].value="840"
            obj.jurisdictionCounty.options[44].text="La Porte County"
            obj.jurisdictionCounty.options[45].value="841"
            obj.jurisdictionCounty.options[45].text="Lagrange County"
            obj.jurisdictionCounty.options[46].value="842"
            obj.jurisdictionCounty.options[46].text="Lake County"
            obj.jurisdictionCounty.options[47].value="843"
            obj.jurisdictionCounty.options[47].text="Lawrence County"
            obj.jurisdictionCounty.options[48].value="844"
            obj.jurisdictionCounty.options[48].text="Madison County"
            obj.jurisdictionCounty.options[49].value="845"
            obj.jurisdictionCounty.options[49].text="Marion County"
            obj.jurisdictionCounty.options[50].value="846"
            obj.jurisdictionCounty.options[50].text="Marshall County"
            obj.jurisdictionCounty.options[51].value="847"
            obj.jurisdictionCounty.options[51].text="Martin County"
            obj.jurisdictionCounty.options[52].value="848"
            obj.jurisdictionCounty.options[52].text="Miami County"
            obj.jurisdictionCounty.options[53].value="849"
            obj.jurisdictionCounty.options[53].text="Monroe County"
            obj.jurisdictionCounty.options[54].value="850"
            obj.jurisdictionCounty.options[54].text="Montgomery County"
            obj.jurisdictionCounty.options[55].value="851"
            obj.jurisdictionCounty.options[55].text="Morgan County"
            obj.jurisdictionCounty.options[56].value="852"
            obj.jurisdictionCounty.options[56].text="Newton County"
            obj.jurisdictionCounty.options[57].value="853"
            obj.jurisdictionCounty.options[57].text="Noble County"
            obj.jurisdictionCounty.options[58].value="854"
            obj.jurisdictionCounty.options[58].text="Ohio County"
            obj.jurisdictionCounty.options[59].value="855"
            obj.jurisdictionCounty.options[59].text="Orange County"
            obj.jurisdictionCounty.options[60].value="856"
            obj.jurisdictionCounty.options[60].text="Owen County"
            obj.jurisdictionCounty.options[61].value="857"
            obj.jurisdictionCounty.options[61].text="Parke County"
            obj.jurisdictionCounty.options[62].value="858"
            obj.jurisdictionCounty.options[62].text="Perry County"
            obj.jurisdictionCounty.options[63].value="859"
            obj.jurisdictionCounty.options[63].text="Pike County"
            obj.jurisdictionCounty.options[64].value="860"
            obj.jurisdictionCounty.options[64].text="Porter County"
            obj.jurisdictionCounty.options[65].value="861"
            obj.jurisdictionCounty.options[65].text="Posey County"
            obj.jurisdictionCounty.options[66].value="862"
            obj.jurisdictionCounty.options[66].text="Pulaski County"
            obj.jurisdictionCounty.options[67].value="863"
            obj.jurisdictionCounty.options[67].text="Putnam County"
            obj.jurisdictionCounty.options[68].value="864"
            obj.jurisdictionCounty.options[68].text="Randolph County"
            obj.jurisdictionCounty.options[69].value="865"
            obj.jurisdictionCounty.options[69].text="Ripley County"
            obj.jurisdictionCounty.options[70].value="866"
            obj.jurisdictionCounty.options[70].text="Rush County"
            obj.jurisdictionCounty.options[71].value="867"
            obj.jurisdictionCounty.options[71].text="Saint Joseph County"
            obj.jurisdictionCounty.options[72].value="868"
            obj.jurisdictionCounty.options[72].text="Scott County"
            obj.jurisdictionCounty.options[73].value="869"
            obj.jurisdictionCounty.options[73].text="Shelby County"
            obj.jurisdictionCounty.options[74].value="870"
            obj.jurisdictionCounty.options[74].text="Spencer County"
            obj.jurisdictionCounty.options[75].value="871"
            obj.jurisdictionCounty.options[75].text="Starke County"
            obj.jurisdictionCounty.options[76].value="872"
            obj.jurisdictionCounty.options[76].text="Steuben County"
            obj.jurisdictionCounty.options[77].value="873"
            obj.jurisdictionCounty.options[77].text="Sullivan County"
            obj.jurisdictionCounty.options[78].value="874"
            obj.jurisdictionCounty.options[78].text="Switzerland County"
            obj.jurisdictionCounty.options[79].value="875"
            obj.jurisdictionCounty.options[79].text="Tippecanoe County"
            obj.jurisdictionCounty.options[80].value="876"
            obj.jurisdictionCounty.options[80].text="Tipton County"
            obj.jurisdictionCounty.options[81].value="877"
            obj.jurisdictionCounty.options[81].text="Union County"
            obj.jurisdictionCounty.options[82].value="878"
            obj.jurisdictionCounty.options[82].text="Vanderburgh County"
            obj.jurisdictionCounty.options[83].value="879"
            obj.jurisdictionCounty.options[83].text="Vermillion County"
            obj.jurisdictionCounty.options[84].value="880"
            obj.jurisdictionCounty.options[84].text="Vigo County"
            obj.jurisdictionCounty.options[85].value="881"
            obj.jurisdictionCounty.options[85].text="Wabash County"
            obj.jurisdictionCounty.options[86].value="882"
            obj.jurisdictionCounty.options[86].text="Warren County"
            obj.jurisdictionCounty.options[87].value="883"
            obj.jurisdictionCounty.options[87].text="Warrick County"
            obj.jurisdictionCounty.options[88].value="884"
            obj.jurisdictionCounty.options[88].text="Washington County"
            obj.jurisdictionCounty.options[89].value="885"
            obj.jurisdictionCounty.options[89].text="Wayne County"
            obj.jurisdictionCounty.options[90].value="886"
            obj.jurisdictionCounty.options[90].text="Wells County"
            obj.jurisdictionCounty.options[91].value="887"
            obj.jurisdictionCounty.options[91].text="White County"
            obj.jurisdictionCounty.options[92].value="888"
            obj.jurisdictionCounty.options[92].text="Whitley County" 
            break;

            
         
         	case 16:
			
             
            obj.jurisdictionCounty.length=100
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="551"
            obj.jurisdictionCounty.options[1].text="Adair County"
            obj.jurisdictionCounty.options[2].value="552"
            obj.jurisdictionCounty.options[2].text="Adams County"
            obj.jurisdictionCounty.options[3].value="553"
            obj.jurisdictionCounty.options[3].text="Allamakee County"
            obj.jurisdictionCounty.options[4].value="554"
            obj.jurisdictionCounty.options[4].text="Appanoose County"
            obj.jurisdictionCounty.options[5].value="555"
            obj.jurisdictionCounty.options[5].text="Audubon County"
            obj.jurisdictionCounty.options[6].value="556"
            obj.jurisdictionCounty.options[6].text="Benton County"
            obj.jurisdictionCounty.options[7].value="557"
            obj.jurisdictionCounty.options[7].text="Black Hawk County"
            obj.jurisdictionCounty.options[8].value="558"
            obj.jurisdictionCounty.options[8].text="Boone County"
            obj.jurisdictionCounty.options[9].value="559"
            obj.jurisdictionCounty.options[9].text="Bremer County"
            obj.jurisdictionCounty.options[10].value="560"
            obj.jurisdictionCounty.options[10].text="Buchanon County"
            obj.jurisdictionCounty.options[11].value="561"
            obj.jurisdictionCounty.options[11].text="Buena Vista County"
            obj.jurisdictionCounty.options[12].value="562"
            obj.jurisdictionCounty.options[12].text="Butler County"
            obj.jurisdictionCounty.options[13].value="563"
            obj.jurisdictionCounty.options[13].text="Calhoun County"
            obj.jurisdictionCounty.options[14].value="564"
            obj.jurisdictionCounty.options[14].text="Carroll County"
            obj.jurisdictionCounty.options[15].value="565"
            obj.jurisdictionCounty.options[15].text="Cass County"
            obj.jurisdictionCounty.options[16].value="566"
            obj.jurisdictionCounty.options[16].text="Cedar County"
            obj.jurisdictionCounty.options[17].value="567"
            obj.jurisdictionCounty.options[17].text="Cerro Gordo County"
            obj.jurisdictionCounty.options[18].value="568"
            obj.jurisdictionCounty.options[18].text="Cherokee County"
            obj.jurisdictionCounty.options[19].value="569"
            obj.jurisdictionCounty.options[19].text="Chickasaw County"
            obj.jurisdictionCounty.options[20].value="570"
            obj.jurisdictionCounty.options[20].text="Clarke County"
            obj.jurisdictionCounty.options[21].value="571"
            obj.jurisdictionCounty.options[21].text="Clay County"
            obj.jurisdictionCounty.options[22].value="572"
            obj.jurisdictionCounty.options[22].text="Clayton County"
            obj.jurisdictionCounty.options[23].value="573"
            obj.jurisdictionCounty.options[23].text="Clinton County"
            obj.jurisdictionCounty.options[24].value="574"
            obj.jurisdictionCounty.options[24].text="Crawford County"
            obj.jurisdictionCounty.options[25].value="575"
            obj.jurisdictionCounty.options[25].text="Dallas County"
            obj.jurisdictionCounty.options[26].value="576"
            obj.jurisdictionCounty.options[26].text="Davis County"
            obj.jurisdictionCounty.options[27].value="577"
            obj.jurisdictionCounty.options[27].text="Decatur County"
            obj.jurisdictionCounty.options[28].value="578"
            obj.jurisdictionCounty.options[28].text="Delaware County"
            obj.jurisdictionCounty.options[29].value="579"
            obj.jurisdictionCounty.options[29].text="Des Moines County"
            obj.jurisdictionCounty.options[30].value="580"
            obj.jurisdictionCounty.options[30].text="Dickinson County"
            obj.jurisdictionCounty.options[31].value="581"
            obj.jurisdictionCounty.options[31].text="Dubuque County"
            obj.jurisdictionCounty.options[32].value="582"
            obj.jurisdictionCounty.options[32].text="Emmet County"
            obj.jurisdictionCounty.options[33].value="583"
            obj.jurisdictionCounty.options[33].text="Fayette County"
            obj.jurisdictionCounty.options[34].value="584"
            obj.jurisdictionCounty.options[34].text="Floyd County"
            obj.jurisdictionCounty.options[35].value="585"
            obj.jurisdictionCounty.options[35].text="Franklin County"
            obj.jurisdictionCounty.options[36].value="586"
            obj.jurisdictionCounty.options[36].text="Fremont County"
            obj.jurisdictionCounty.options[37].value="587"
            obj.jurisdictionCounty.options[37].text="Greene County"
            obj.jurisdictionCounty.options[38].value="588"
            obj.jurisdictionCounty.options[38].text="Grundy County"
            obj.jurisdictionCounty.options[39].value="589"
            obj.jurisdictionCounty.options[39].text="Guthrie County"
            obj.jurisdictionCounty.options[40].value="590"
            obj.jurisdictionCounty.options[40].text="Hamilton County"
            obj.jurisdictionCounty.options[41].value="591"
            obj.jurisdictionCounty.options[41].text="Hancock County"
            obj.jurisdictionCounty.options[42].value="592"
            obj.jurisdictionCounty.options[42].text="Hardin County"
            obj.jurisdictionCounty.options[43].value="593"
            obj.jurisdictionCounty.options[43].text="Harrison County"
            obj.jurisdictionCounty.options[44].value="594"
            obj.jurisdictionCounty.options[44].text="Henry County"
            obj.jurisdictionCounty.options[45].value="595"
            obj.jurisdictionCounty.options[45].text="Howard County"
            obj.jurisdictionCounty.options[46].value="596"
            obj.jurisdictionCounty.options[46].text="Humbolt County"
            obj.jurisdictionCounty.options[47].value="597"
            obj.jurisdictionCounty.options[47].text="Ida County"
            obj.jurisdictionCounty.options[48].value="598"
            obj.jurisdictionCounty.options[48].text="Iowa County"
            obj.jurisdictionCounty.options[49].value="599"
            obj.jurisdictionCounty.options[49].text="Jackson County"
            obj.jurisdictionCounty.options[50].value="600"
            obj.jurisdictionCounty.options[50].text="Jasper County"
            obj.jurisdictionCounty.options[51].value="601"
            obj.jurisdictionCounty.options[51].text="Jefferson County"
            obj.jurisdictionCounty.options[52].value="602"
            obj.jurisdictionCounty.options[52].text="Johnson County"
            obj.jurisdictionCounty.options[53].value="603"
            obj.jurisdictionCounty.options[53].text="Jones County"
            obj.jurisdictionCounty.options[54].value="604"
            obj.jurisdictionCounty.options[54].text="Keokuk County"
            obj.jurisdictionCounty.options[55].value="605"
            obj.jurisdictionCounty.options[55].text="Kossuth County"
            obj.jurisdictionCounty.options[56].value="606"
            obj.jurisdictionCounty.options[56].text="Lee County"
            obj.jurisdictionCounty.options[57].value="608"
            obj.jurisdictionCounty.options[57].text="Linn County"
            obj.jurisdictionCounty.options[58].value="609"
            obj.jurisdictionCounty.options[58].text="Louisa County"
            obj.jurisdictionCounty.options[59].value="610"
            obj.jurisdictionCounty.options[59].text="Lucas County"
            obj.jurisdictionCounty.options[60].value="611"
            obj.jurisdictionCounty.options[60].text="Lyon County"
            obj.jurisdictionCounty.options[61].value="612"
            obj.jurisdictionCounty.options[61].text="Madison County"
            obj.jurisdictionCounty.options[62].value="613"
            obj.jurisdictionCounty.options[62].text="Mahaska County"
            obj.jurisdictionCounty.options[63].value="614"
            obj.jurisdictionCounty.options[63].text="Marion County"
            obj.jurisdictionCounty.options[64].value="615"
            obj.jurisdictionCounty.options[64].text="Marshall County"
            obj.jurisdictionCounty.options[65].value="616"
            obj.jurisdictionCounty.options[65].text="Mills County"
            obj.jurisdictionCounty.options[66].value="617"
            obj.jurisdictionCounty.options[66].text="Mitchell County"
            obj.jurisdictionCounty.options[67].value="618"
            obj.jurisdictionCounty.options[67].text="Monona County"
            obj.jurisdictionCounty.options[68].value="619"
            obj.jurisdictionCounty.options[68].text="Monroe County"
            obj.jurisdictionCounty.options[69].value="620"
            obj.jurisdictionCounty.options[69].text="Montgomery County"
            obj.jurisdictionCounty.options[70].value="621"
            obj.jurisdictionCounty.options[70].text="Muscatine County"
            obj.jurisdictionCounty.options[71].value="622"
            obj.jurisdictionCounty.options[71].text="O'Brien County"
            obj.jurisdictionCounty.options[72].value="623"
            obj.jurisdictionCounty.options[72].text="Osceola County"
            obj.jurisdictionCounty.options[73].value="624"
            obj.jurisdictionCounty.options[73].text="Page County"
            obj.jurisdictionCounty.options[74].value="625"
            obj.jurisdictionCounty.options[74].text="Palo Alto County"
            obj.jurisdictionCounty.options[75].value="626"
            obj.jurisdictionCounty.options[75].text="Plymouth County"
            obj.jurisdictionCounty.options[76].value="627"
            obj.jurisdictionCounty.options[76].text="Pocahontas County"
            obj.jurisdictionCounty.options[77].value="628"
            obj.jurisdictionCounty.options[77].text="Polk County"
            obj.jurisdictionCounty.options[78].value="629"
            obj.jurisdictionCounty.options[78].text="Pottawattamie County"
            obj.jurisdictionCounty.options[79].value="630"
            obj.jurisdictionCounty.options[79].text="Poweshiek County"
            obj.jurisdictionCounty.options[80].value="631"
            obj.jurisdictionCounty.options[80].text="Ringgold County"
            obj.jurisdictionCounty.options[81].value="632"
            obj.jurisdictionCounty.options[81].text="Sac County"
            obj.jurisdictionCounty.options[82].value="633"
            obj.jurisdictionCounty.options[82].text="Scott County"
            obj.jurisdictionCounty.options[83].value="634"
            obj.jurisdictionCounty.options[83].text="Shelby County"
            obj.jurisdictionCounty.options[84].value="635"
            obj.jurisdictionCounty.options[84].text="Sioux County"
            obj.jurisdictionCounty.options[85].value="636"
            obj.jurisdictionCounty.options[85].text="Story County"
            obj.jurisdictionCounty.options[86].value="637"
            obj.jurisdictionCounty.options[86].text="Tama County"
            obj.jurisdictionCounty.options[87].value="638"
            obj.jurisdictionCounty.options[87].text="Taylor County"
            obj.jurisdictionCounty.options[88].value="639"
            obj.jurisdictionCounty.options[88].text="Union County"
            obj.jurisdictionCounty.options[89].value="640"
            obj.jurisdictionCounty.options[89].text="Van Buren County"
            obj.jurisdictionCounty.options[90].value="641"
            obj.jurisdictionCounty.options[90].text="Wapello County"
            obj.jurisdictionCounty.options[91].value="642"
            obj.jurisdictionCounty.options[91].text="Warren County"
            obj.jurisdictionCounty.options[92].value="643"
            obj.jurisdictionCounty.options[92].text="Washington County"
            obj.jurisdictionCounty.options[93].value="644"
            obj.jurisdictionCounty.options[93].text="Wayne County"
            obj.jurisdictionCounty.options[94].value="645"
            obj.jurisdictionCounty.options[94].text="Webster County"
            obj.jurisdictionCounty.options[95].value="646"
            obj.jurisdictionCounty.options[95].text="White County"
            obj.jurisdictionCounty.options[96].value="647"
            obj.jurisdictionCounty.options[96].text="Winnebago County"
            obj.jurisdictionCounty.options[97].value="648"
            obj.jurisdictionCounty.options[97].text="Winneshiek County"
            obj.jurisdictionCounty.options[98].value="649"
            obj.jurisdictionCounty.options[98].text="Woodbury County"
            obj.jurisdictionCounty.options[99].value="650"
            obj.jurisdictionCounty.options[99].text="Worth County" 
            break;

            
         
         	case 17:
			
             
            obj.jurisdictionCounty.length=106
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="889"
            obj.jurisdictionCounty.options[1].text="Allen County"
            obj.jurisdictionCounty.options[2].value="890"
            obj.jurisdictionCounty.options[2].text="Anderson County"
            obj.jurisdictionCounty.options[3].value="891"
            obj.jurisdictionCounty.options[3].text="Atchison County"
            obj.jurisdictionCounty.options[4].value="892"
            obj.jurisdictionCounty.options[4].text="Barber County"
            obj.jurisdictionCounty.options[5].value="893"
            obj.jurisdictionCounty.options[5].text="Barton County"
            obj.jurisdictionCounty.options[6].value="894"
            obj.jurisdictionCounty.options[6].text="Bourbon County"
            obj.jurisdictionCounty.options[7].value="895"
            obj.jurisdictionCounty.options[7].text="Brown County"
            obj.jurisdictionCounty.options[8].value="896"
            obj.jurisdictionCounty.options[8].text="Butler County"
            obj.jurisdictionCounty.options[9].value="897"
            obj.jurisdictionCounty.options[9].text="Chase County"
            obj.jurisdictionCounty.options[10].value="898"
            obj.jurisdictionCounty.options[10].text="Chautauqua County"
            obj.jurisdictionCounty.options[11].value="899"
            obj.jurisdictionCounty.options[11].text="Cherokee County"
            obj.jurisdictionCounty.options[12].value="900"
            obj.jurisdictionCounty.options[12].text="Cheyenne County"
            obj.jurisdictionCounty.options[13].value="901"
            obj.jurisdictionCounty.options[13].text="Clark County"
            obj.jurisdictionCounty.options[14].value="902"
            obj.jurisdictionCounty.options[14].text="Clay County"
            obj.jurisdictionCounty.options[15].value="903"
            obj.jurisdictionCounty.options[15].text="Cloud County"
            obj.jurisdictionCounty.options[16].value="904"
            obj.jurisdictionCounty.options[16].text="Coffey County"
            obj.jurisdictionCounty.options[17].value="905"
            obj.jurisdictionCounty.options[17].text="Comanche County"
            obj.jurisdictionCounty.options[18].value="906"
            obj.jurisdictionCounty.options[18].text="Cowley County"
            obj.jurisdictionCounty.options[19].value="907"
            obj.jurisdictionCounty.options[19].text="Crawford County"
            obj.jurisdictionCounty.options[20].value="908"
            obj.jurisdictionCounty.options[20].text="Decatur County"
            obj.jurisdictionCounty.options[21].value="909"
            obj.jurisdictionCounty.options[21].text="Dickinson County"
            obj.jurisdictionCounty.options[22].value="910"
            obj.jurisdictionCounty.options[22].text="Doniphan County"
            obj.jurisdictionCounty.options[23].value="911"
            obj.jurisdictionCounty.options[23].text="Douglas County"
            obj.jurisdictionCounty.options[24].value="912"
            obj.jurisdictionCounty.options[24].text="Edwards County"
            obj.jurisdictionCounty.options[25].value="913"
            obj.jurisdictionCounty.options[25].text="Elk County"
            obj.jurisdictionCounty.options[26].value="914"
            obj.jurisdictionCounty.options[26].text="Ellis County"
            obj.jurisdictionCounty.options[27].value="915"
            obj.jurisdictionCounty.options[27].text="Ellsworth County"
            obj.jurisdictionCounty.options[28].value="916"
            obj.jurisdictionCounty.options[28].text="Finney County"
            obj.jurisdictionCounty.options[29].value="917"
            obj.jurisdictionCounty.options[29].text="Ford County"
            obj.jurisdictionCounty.options[30].value="918"
            obj.jurisdictionCounty.options[30].text="Franklin County"
            obj.jurisdictionCounty.options[31].value="919"
            obj.jurisdictionCounty.options[31].text="Geary County"
            obj.jurisdictionCounty.options[32].value="920"
            obj.jurisdictionCounty.options[32].text="Gove County"
            obj.jurisdictionCounty.options[33].value="921"
            obj.jurisdictionCounty.options[33].text="Graham County"
            obj.jurisdictionCounty.options[34].value="922"
            obj.jurisdictionCounty.options[34].text="Grant County"
            obj.jurisdictionCounty.options[35].value="923"
            obj.jurisdictionCounty.options[35].text="Gray County"
            obj.jurisdictionCounty.options[36].value="924"
            obj.jurisdictionCounty.options[36].text="Greeley County"
            obj.jurisdictionCounty.options[37].value="925"
            obj.jurisdictionCounty.options[37].text="Greenwood County"
            obj.jurisdictionCounty.options[38].value="926"
            obj.jurisdictionCounty.options[38].text="Hamilton County"
            obj.jurisdictionCounty.options[39].value="927"
            obj.jurisdictionCounty.options[39].text="Harper County"
            obj.jurisdictionCounty.options[40].value="928"
            obj.jurisdictionCounty.options[40].text="Harvey County"
            obj.jurisdictionCounty.options[41].value="929"
            obj.jurisdictionCounty.options[41].text="Haskell County"
            obj.jurisdictionCounty.options[42].value="930"
            obj.jurisdictionCounty.options[42].text="Hodgeman County"
            obj.jurisdictionCounty.options[43].value="931"
            obj.jurisdictionCounty.options[43].text="Jackson County"
            obj.jurisdictionCounty.options[44].value="932"
            obj.jurisdictionCounty.options[44].text="Jefferson County"
            obj.jurisdictionCounty.options[45].value="933"
            obj.jurisdictionCounty.options[45].text="Jewell County"
            obj.jurisdictionCounty.options[46].value="934"
            obj.jurisdictionCounty.options[46].text="Johnson County"
            obj.jurisdictionCounty.options[47].value="935"
            obj.jurisdictionCounty.options[47].text="Kearney County"
            obj.jurisdictionCounty.options[48].value="936"
            obj.jurisdictionCounty.options[48].text="Kingman County"
            obj.jurisdictionCounty.options[49].value="937"
            obj.jurisdictionCounty.options[49].text="Kiowa County"
            obj.jurisdictionCounty.options[50].value="938"
            obj.jurisdictionCounty.options[50].text="Labette County"
            obj.jurisdictionCounty.options[51].value="939"
            obj.jurisdictionCounty.options[51].text="Lane County"
            obj.jurisdictionCounty.options[52].value="940"
            obj.jurisdictionCounty.options[52].text="Leavenworth County"
            obj.jurisdictionCounty.options[53].value="941"
            obj.jurisdictionCounty.options[53].text="Lincoln County"
            obj.jurisdictionCounty.options[54].value="942"
            obj.jurisdictionCounty.options[54].text="Linn County"
            obj.jurisdictionCounty.options[55].value="943"
            obj.jurisdictionCounty.options[55].text="Logan County"
            obj.jurisdictionCounty.options[56].value="944"
            obj.jurisdictionCounty.options[56].text="Lyon County"
            obj.jurisdictionCounty.options[57].value="945"
            obj.jurisdictionCounty.options[57].text="Marion County"
            obj.jurisdictionCounty.options[58].value="946"
            obj.jurisdictionCounty.options[58].text="Marshall County"
            obj.jurisdictionCounty.options[59].value="947"
            obj.jurisdictionCounty.options[59].text="McPherson County"
            obj.jurisdictionCounty.options[60].value="948"
            obj.jurisdictionCounty.options[60].text="Meade County"
            obj.jurisdictionCounty.options[61].value="949"
            obj.jurisdictionCounty.options[61].text="Miami County"
            obj.jurisdictionCounty.options[62].value="950"
            obj.jurisdictionCounty.options[62].text="Mitchell County"
            obj.jurisdictionCounty.options[63].value="951"
            obj.jurisdictionCounty.options[63].text="Montgomery County"
            obj.jurisdictionCounty.options[64].value="952"
            obj.jurisdictionCounty.options[64].text="Morris County"
            obj.jurisdictionCounty.options[65].value="953"
            obj.jurisdictionCounty.options[65].text="Morton County"
            obj.jurisdictionCounty.options[66].value="954"
            obj.jurisdictionCounty.options[66].text="Nemaha County"
            obj.jurisdictionCounty.options[67].value="955"
            obj.jurisdictionCounty.options[67].text="Neosho County"
            obj.jurisdictionCounty.options[68].value="956"
            obj.jurisdictionCounty.options[68].text="Ness County"
            obj.jurisdictionCounty.options[69].value="957"
            obj.jurisdictionCounty.options[69].text="Norton County"
            obj.jurisdictionCounty.options[70].value="958"
            obj.jurisdictionCounty.options[70].text="Osage County"
            obj.jurisdictionCounty.options[71].value="959"
            obj.jurisdictionCounty.options[71].text="Osborne County"
            obj.jurisdictionCounty.options[72].value="960"
            obj.jurisdictionCounty.options[72].text="Ottawa County"
            obj.jurisdictionCounty.options[73].value="961"
            obj.jurisdictionCounty.options[73].text="Pawnee County"
            obj.jurisdictionCounty.options[74].value="962"
            obj.jurisdictionCounty.options[74].text="Phillips County"
            obj.jurisdictionCounty.options[75].value="963"
            obj.jurisdictionCounty.options[75].text="Pottawatomie County"
            obj.jurisdictionCounty.options[76].value="964"
            obj.jurisdictionCounty.options[76].text="Pratt County"
            obj.jurisdictionCounty.options[77].value="965"
            obj.jurisdictionCounty.options[77].text="Rawlins County"
            obj.jurisdictionCounty.options[78].value="966"
            obj.jurisdictionCounty.options[78].text="Reno County"
            obj.jurisdictionCounty.options[79].value="967"
            obj.jurisdictionCounty.options[79].text="Republic County"
            obj.jurisdictionCounty.options[80].value="968"
            obj.jurisdictionCounty.options[80].text="Rice County"
            obj.jurisdictionCounty.options[81].value="969"
            obj.jurisdictionCounty.options[81].text="Riley County"
            obj.jurisdictionCounty.options[82].value="970"
            obj.jurisdictionCounty.options[82].text="Rooks County"
            obj.jurisdictionCounty.options[83].value="971"
            obj.jurisdictionCounty.options[83].text="Rush County"
            obj.jurisdictionCounty.options[84].value="972"
            obj.jurisdictionCounty.options[84].text="Russell County"
            obj.jurisdictionCounty.options[85].value="973"
            obj.jurisdictionCounty.options[85].text="Saline County"
            obj.jurisdictionCounty.options[86].value="974"
            obj.jurisdictionCounty.options[86].text="Scott County"
            obj.jurisdictionCounty.options[87].value="975"
            obj.jurisdictionCounty.options[87].text="Sedgwick County"
            obj.jurisdictionCounty.options[88].value="976"
            obj.jurisdictionCounty.options[88].text="Seward County"
            obj.jurisdictionCounty.options[89].value="977"
            obj.jurisdictionCounty.options[89].text="Shawnee County"
            obj.jurisdictionCounty.options[90].value="978"
            obj.jurisdictionCounty.options[90].text="Sheridan County"
            obj.jurisdictionCounty.options[91].value="979"
            obj.jurisdictionCounty.options[91].text="Sherman County"
            obj.jurisdictionCounty.options[92].value="980"
            obj.jurisdictionCounty.options[92].text="Smith County"
            obj.jurisdictionCounty.options[93].value="981"
            obj.jurisdictionCounty.options[93].text="Stafford County"
            obj.jurisdictionCounty.options[94].value="982"
            obj.jurisdictionCounty.options[94].text="Stanton County"
            obj.jurisdictionCounty.options[95].value="983"
            obj.jurisdictionCounty.options[95].text="Stevens County"
            obj.jurisdictionCounty.options[96].value="984"
            obj.jurisdictionCounty.options[96].text="Sumner County"
            obj.jurisdictionCounty.options[97].value="985"
            obj.jurisdictionCounty.options[97].text="Thomas County"
            obj.jurisdictionCounty.options[98].value="986"
            obj.jurisdictionCounty.options[98].text="Trego County"
            obj.jurisdictionCounty.options[99].value="987"
            obj.jurisdictionCounty.options[99].text="Wabaunsee County"
            obj.jurisdictionCounty.options[100].value="988"
            obj.jurisdictionCounty.options[100].text="Wallace County"
            obj.jurisdictionCounty.options[101].value="989"
            obj.jurisdictionCounty.options[101].text="Washington County"
            obj.jurisdictionCounty.options[102].value="990"
            obj.jurisdictionCounty.options[102].text="Wichita County"
            obj.jurisdictionCounty.options[103].value="991"
            obj.jurisdictionCounty.options[103].text="Wilson County"
            obj.jurisdictionCounty.options[104].value="992"
            obj.jurisdictionCounty.options[104].text="Woodson County"
            obj.jurisdictionCounty.options[105].value="993"
            obj.jurisdictionCounty.options[105].text="Wyandotte County" 
            break;

            
         
         	case 18:
			
             
            obj.jurisdictionCounty.length=121
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="994"
            obj.jurisdictionCounty.options[1].text="Adair County"
            obj.jurisdictionCounty.options[2].value="995"
            obj.jurisdictionCounty.options[2].text="Allen County"
            obj.jurisdictionCounty.options[3].value="996"
            obj.jurisdictionCounty.options[3].text="Anderson County"
            obj.jurisdictionCounty.options[4].value="997"
            obj.jurisdictionCounty.options[4].text="Ballard County"
            obj.jurisdictionCounty.options[5].value="998"
            obj.jurisdictionCounty.options[5].text="Barren County"
            obj.jurisdictionCounty.options[6].value="999"
            obj.jurisdictionCounty.options[6].text="Bath County"
            obj.jurisdictionCounty.options[7].value="1000"
            obj.jurisdictionCounty.options[7].text="Bell County"
            obj.jurisdictionCounty.options[8].value="1001"
            obj.jurisdictionCounty.options[8].text="Boone County"
            obj.jurisdictionCounty.options[9].value="1002"
            obj.jurisdictionCounty.options[9].text="Bourbon County"
            obj.jurisdictionCounty.options[10].value="1003"
            obj.jurisdictionCounty.options[10].text="Boyd County"
            obj.jurisdictionCounty.options[11].value="1004"
            obj.jurisdictionCounty.options[11].text="Boyle County"
            obj.jurisdictionCounty.options[12].value="1005"
            obj.jurisdictionCounty.options[12].text="Bracken County"
            obj.jurisdictionCounty.options[13].value="1006"
            obj.jurisdictionCounty.options[13].text="Breathitt County"
            obj.jurisdictionCounty.options[14].value="1007"
            obj.jurisdictionCounty.options[14].text="Breckinridge County"
            obj.jurisdictionCounty.options[15].value="1008"
            obj.jurisdictionCounty.options[15].text="Bullitt County"
            obj.jurisdictionCounty.options[16].value="1009"
            obj.jurisdictionCounty.options[16].text="Butler County"
            obj.jurisdictionCounty.options[17].value="1010"
            obj.jurisdictionCounty.options[17].text="Caldwell County"
            obj.jurisdictionCounty.options[18].value="1011"
            obj.jurisdictionCounty.options[18].text="Calloway County"
            obj.jurisdictionCounty.options[19].value="1012"
            obj.jurisdictionCounty.options[19].text="Campbell County"
            obj.jurisdictionCounty.options[20].value="1013"
            obj.jurisdictionCounty.options[20].text="Carlisle County"
            obj.jurisdictionCounty.options[21].value="1014"
            obj.jurisdictionCounty.options[21].text="Carroll County"
            obj.jurisdictionCounty.options[22].value="1015"
            obj.jurisdictionCounty.options[22].text="Carter County"
            obj.jurisdictionCounty.options[23].value="1016"
            obj.jurisdictionCounty.options[23].text="Casey County"
            obj.jurisdictionCounty.options[24].value="1017"
            obj.jurisdictionCounty.options[24].text="Christian County"
            obj.jurisdictionCounty.options[25].value="1018"
            obj.jurisdictionCounty.options[25].text="Clark County"
            obj.jurisdictionCounty.options[26].value="1019"
            obj.jurisdictionCounty.options[26].text="Clay County"
            obj.jurisdictionCounty.options[27].value="1020"
            obj.jurisdictionCounty.options[27].text="Clinton County"
            obj.jurisdictionCounty.options[28].value="1021"
            obj.jurisdictionCounty.options[28].text="Crittenden County"
            obj.jurisdictionCounty.options[29].value="1022"
            obj.jurisdictionCounty.options[29].text="Cumberland County"
            obj.jurisdictionCounty.options[30].value="1023"
            obj.jurisdictionCounty.options[30].text="Daviess County"
            obj.jurisdictionCounty.options[31].value="1024"
            obj.jurisdictionCounty.options[31].text="Edmonson County"
            obj.jurisdictionCounty.options[32].value="1025"
            obj.jurisdictionCounty.options[32].text="Elliott County"
            obj.jurisdictionCounty.options[33].value="1026"
            obj.jurisdictionCounty.options[33].text="Estill County"
            obj.jurisdictionCounty.options[34].value="1027"
            obj.jurisdictionCounty.options[34].text="Fayette County"
            obj.jurisdictionCounty.options[35].value="1028"
            obj.jurisdictionCounty.options[35].text="Fleming County"
            obj.jurisdictionCounty.options[36].value="1029"
            obj.jurisdictionCounty.options[36].text="Floyd County"
            obj.jurisdictionCounty.options[37].value="1030"
            obj.jurisdictionCounty.options[37].text="Franklin County"
            obj.jurisdictionCounty.options[38].value="1031"
            obj.jurisdictionCounty.options[38].text="Fulton County"
            obj.jurisdictionCounty.options[39].value="1032"
            obj.jurisdictionCounty.options[39].text="Gallatin County"
            obj.jurisdictionCounty.options[40].value="1033"
            obj.jurisdictionCounty.options[40].text="Garrard County"
            obj.jurisdictionCounty.options[41].value="1034"
            obj.jurisdictionCounty.options[41].text="Grant County"
            obj.jurisdictionCounty.options[42].value="1035"
            obj.jurisdictionCounty.options[42].text="Graves County"
            obj.jurisdictionCounty.options[43].value="1036"
            obj.jurisdictionCounty.options[43].text="Grayson County"
            obj.jurisdictionCounty.options[44].value="1037"
            obj.jurisdictionCounty.options[44].text="Green County"
            obj.jurisdictionCounty.options[45].value="1038"
            obj.jurisdictionCounty.options[45].text="Greenup County"
            obj.jurisdictionCounty.options[46].value="1039"
            obj.jurisdictionCounty.options[46].text="Hancock County"
            obj.jurisdictionCounty.options[47].value="1040"
            obj.jurisdictionCounty.options[47].text="Hardin County"
            obj.jurisdictionCounty.options[48].value="1041"
            obj.jurisdictionCounty.options[48].text="Harlan County"
            obj.jurisdictionCounty.options[49].value="1042"
            obj.jurisdictionCounty.options[49].text="Harrison County"
            obj.jurisdictionCounty.options[50].value="1043"
            obj.jurisdictionCounty.options[50].text="Hart County"
            obj.jurisdictionCounty.options[51].value="1044"
            obj.jurisdictionCounty.options[51].text="Henderson County"
            obj.jurisdictionCounty.options[52].value="1045"
            obj.jurisdictionCounty.options[52].text="Henry County"
            obj.jurisdictionCounty.options[53].value="1046"
            obj.jurisdictionCounty.options[53].text="Hickman County"
            obj.jurisdictionCounty.options[54].value="1047"
            obj.jurisdictionCounty.options[54].text="Hopkins County"
            obj.jurisdictionCounty.options[55].value="1048"
            obj.jurisdictionCounty.options[55].text="Jackson County"
            obj.jurisdictionCounty.options[56].value="1049"
            obj.jurisdictionCounty.options[56].text="Jefferson County"
            obj.jurisdictionCounty.options[57].value="1050"
            obj.jurisdictionCounty.options[57].text="Jessamine County"
            obj.jurisdictionCounty.options[58].value="1051"
            obj.jurisdictionCounty.options[58].text="Johnson County"
            obj.jurisdictionCounty.options[59].value="1052"
            obj.jurisdictionCounty.options[59].text="Kenton County"
            obj.jurisdictionCounty.options[60].value="1053"
            obj.jurisdictionCounty.options[60].text="Knott County"
            obj.jurisdictionCounty.options[61].value="1054"
            obj.jurisdictionCounty.options[61].text="Knox County"
            obj.jurisdictionCounty.options[62].value="1055"
            obj.jurisdictionCounty.options[62].text="Larue County"
            obj.jurisdictionCounty.options[63].value="1056"
            obj.jurisdictionCounty.options[63].text="Laurel County"
            obj.jurisdictionCounty.options[64].value="1057"
            obj.jurisdictionCounty.options[64].text="Lawrence County"
            obj.jurisdictionCounty.options[65].value="1058"
            obj.jurisdictionCounty.options[65].text="Lee County"
            obj.jurisdictionCounty.options[66].value="1059"
            obj.jurisdictionCounty.options[66].text="Leslie County"
            obj.jurisdictionCounty.options[67].value="1060"
            obj.jurisdictionCounty.options[67].text="Letcher County"
            obj.jurisdictionCounty.options[68].value="1061"
            obj.jurisdictionCounty.options[68].text="Lewis County"
            obj.jurisdictionCounty.options[69].value="1062"
            obj.jurisdictionCounty.options[69].text="Lincoln County"
            obj.jurisdictionCounty.options[70].value="1063"
            obj.jurisdictionCounty.options[70].text="Livingston County"
            obj.jurisdictionCounty.options[71].value="1064"
            obj.jurisdictionCounty.options[71].text="Logan County"
            obj.jurisdictionCounty.options[72].value="1065"
            obj.jurisdictionCounty.options[72].text="Lyon County"
            obj.jurisdictionCounty.options[73].value="1066"
            obj.jurisdictionCounty.options[73].text="Madison County"
            obj.jurisdictionCounty.options[74].value="1067"
            obj.jurisdictionCounty.options[74].text="Magoffin County"
            obj.jurisdictionCounty.options[75].value="1068"
            obj.jurisdictionCounty.options[75].text="Marion County"
            obj.jurisdictionCounty.options[76].value="1069"
            obj.jurisdictionCounty.options[76].text="Marshall County"
            obj.jurisdictionCounty.options[77].value="1070"
            obj.jurisdictionCounty.options[77].text="Martin County"
            obj.jurisdictionCounty.options[78].value="1071"
            obj.jurisdictionCounty.options[78].text="Mason County"
            obj.jurisdictionCounty.options[79].value="1072"
            obj.jurisdictionCounty.options[79].text="McCracken County"
            obj.jurisdictionCounty.options[80].value="1073"
            obj.jurisdictionCounty.options[80].text="McCreary County"
            obj.jurisdictionCounty.options[81].value="1074"
            obj.jurisdictionCounty.options[81].text="McLean County"
            obj.jurisdictionCounty.options[82].value="1075"
            obj.jurisdictionCounty.options[82].text="Meade County"
            obj.jurisdictionCounty.options[83].value="1076"
            obj.jurisdictionCounty.options[83].text="Menifee County"
            obj.jurisdictionCounty.options[84].value="1077"
            obj.jurisdictionCounty.options[84].text="Mercer County"
            obj.jurisdictionCounty.options[85].value="1078"
            obj.jurisdictionCounty.options[85].text="Metcalfe County"
            obj.jurisdictionCounty.options[86].value="1079"
            obj.jurisdictionCounty.options[86].text="Monroe County"
            obj.jurisdictionCounty.options[87].value="1080"
            obj.jurisdictionCounty.options[87].text="Montgomery County"
            obj.jurisdictionCounty.options[88].value="1081"
            obj.jurisdictionCounty.options[88].text="Morgan County"
            obj.jurisdictionCounty.options[89].value="1082"
            obj.jurisdictionCounty.options[89].text="Muhlenberg County"
            obj.jurisdictionCounty.options[90].value="1083"
            obj.jurisdictionCounty.options[90].text="Nelson County"
            obj.jurisdictionCounty.options[91].value="1084"
            obj.jurisdictionCounty.options[91].text="Nicholas County"
            obj.jurisdictionCounty.options[92].value="1085"
            obj.jurisdictionCounty.options[92].text="Ohio County"
            obj.jurisdictionCounty.options[93].value="1086"
            obj.jurisdictionCounty.options[93].text="Oldham County"
            obj.jurisdictionCounty.options[94].value="1087"
            obj.jurisdictionCounty.options[94].text="Owen County"
            obj.jurisdictionCounty.options[95].value="1088"
            obj.jurisdictionCounty.options[95].text="Owsley County"
            obj.jurisdictionCounty.options[96].value="1089"
            obj.jurisdictionCounty.options[96].text="Pendelton County"
            obj.jurisdictionCounty.options[97].value="1090"
            obj.jurisdictionCounty.options[97].text="Perry County"
            obj.jurisdictionCounty.options[98].value="1091"
            obj.jurisdictionCounty.options[98].text="Pike County"
            obj.jurisdictionCounty.options[99].value="1092"
            obj.jurisdictionCounty.options[99].text="Powell County"
            obj.jurisdictionCounty.options[100].value="1093"
            obj.jurisdictionCounty.options[100].text="Pulaski County"
            obj.jurisdictionCounty.options[101].value="1094"
            obj.jurisdictionCounty.options[101].text="Robertson County"
            obj.jurisdictionCounty.options[102].value="1095"
            obj.jurisdictionCounty.options[102].text="Rockcastle County"
            obj.jurisdictionCounty.options[103].value="1096"
            obj.jurisdictionCounty.options[103].text="Rowan County"
            obj.jurisdictionCounty.options[104].value="1097"
            obj.jurisdictionCounty.options[104].text="Russell County"
            obj.jurisdictionCounty.options[105].value="1098"
            obj.jurisdictionCounty.options[105].text="Scott County"
            obj.jurisdictionCounty.options[106].value="1099"
            obj.jurisdictionCounty.options[106].text="Shelby County"
            obj.jurisdictionCounty.options[107].value="1100"
            obj.jurisdictionCounty.options[107].text="Simpson County"
            obj.jurisdictionCounty.options[108].value="1101"
            obj.jurisdictionCounty.options[108].text="Spencer County"
            obj.jurisdictionCounty.options[109].value="1102"
            obj.jurisdictionCounty.options[109].text="Taylor County"
            obj.jurisdictionCounty.options[110].value="1103"
            obj.jurisdictionCounty.options[110].text="Todd County"
            obj.jurisdictionCounty.options[111].value="1104"
            obj.jurisdictionCounty.options[111].text="Trigg County"
            obj.jurisdictionCounty.options[112].value="1105"
            obj.jurisdictionCounty.options[112].text="Trimble County"
            obj.jurisdictionCounty.options[113].value="1106"
            obj.jurisdictionCounty.options[113].text="Union County"
            obj.jurisdictionCounty.options[114].value="1107"
            obj.jurisdictionCounty.options[114].text="Warren County"
            obj.jurisdictionCounty.options[115].value="1108"
            obj.jurisdictionCounty.options[115].text="Washington County"
            obj.jurisdictionCounty.options[116].value="1109"
            obj.jurisdictionCounty.options[116].text="Wayne County"
            obj.jurisdictionCounty.options[117].value="1110"
            obj.jurisdictionCounty.options[117].text="Webster County"
            obj.jurisdictionCounty.options[118].value="1111"
            obj.jurisdictionCounty.options[118].text="Whitley County"
            obj.jurisdictionCounty.options[119].value="1112"
            obj.jurisdictionCounty.options[119].text="Wolfe County"
            obj.jurisdictionCounty.options[120].value="1113"
            obj.jurisdictionCounty.options[120].text="Woodford County" 
            break;

            
         
         	case 19:
			
             
            obj.jurisdictionCounty.length=65
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1114"
            obj.jurisdictionCounty.options[1].text="Acadia Parish"
            obj.jurisdictionCounty.options[2].value="1115"
            obj.jurisdictionCounty.options[2].text="Allen Parish"
            obj.jurisdictionCounty.options[3].value="1116"
            obj.jurisdictionCounty.options[3].text="Ascension Parish"
            obj.jurisdictionCounty.options[4].value="1117"
            obj.jurisdictionCounty.options[4].text="Assumption Parish"
            obj.jurisdictionCounty.options[5].value="1118"
            obj.jurisdictionCounty.options[5].text="Avoyelles Parish"
            obj.jurisdictionCounty.options[6].value="1119"
            obj.jurisdictionCounty.options[6].text="Beauregard Parish"
            obj.jurisdictionCounty.options[7].value="1120"
            obj.jurisdictionCounty.options[7].text="Bienville Parish"
            obj.jurisdictionCounty.options[8].value="1121"
            obj.jurisdictionCounty.options[8].text="Bossier Parish"
            obj.jurisdictionCounty.options[9].value="1122"
            obj.jurisdictionCounty.options[9].text="Caddo Parish"
            obj.jurisdictionCounty.options[10].value="1123"
            obj.jurisdictionCounty.options[10].text="Calcasieu Parish"
            obj.jurisdictionCounty.options[11].value="1124"
            obj.jurisdictionCounty.options[11].text="Caldwell Parish"
            obj.jurisdictionCounty.options[12].value="1125"
            obj.jurisdictionCounty.options[12].text="Cameron Parish"
            obj.jurisdictionCounty.options[13].value="1126"
            obj.jurisdictionCounty.options[13].text="Catahoula Parish"
            obj.jurisdictionCounty.options[14].value="1127"
            obj.jurisdictionCounty.options[14].text="Claiborne Parish"
            obj.jurisdictionCounty.options[15].value="1128"
            obj.jurisdictionCounty.options[15].text="Concordia Parish"
            obj.jurisdictionCounty.options[16].value="1129"
            obj.jurisdictionCounty.options[16].text="DeSoto Parish"
            obj.jurisdictionCounty.options[17].value="1130"
            obj.jurisdictionCounty.options[17].text="East Baton Rouge Parish"
            obj.jurisdictionCounty.options[18].value="1131"
            obj.jurisdictionCounty.options[18].text="East Carroll Parish"
            obj.jurisdictionCounty.options[19].value="1132"
            obj.jurisdictionCounty.options[19].text="East Feliciana Parish"
            obj.jurisdictionCounty.options[20].value="1133"
            obj.jurisdictionCounty.options[20].text="Evangeline Parish"
            obj.jurisdictionCounty.options[21].value="1134"
            obj.jurisdictionCounty.options[21].text="Franklin Parish"
            obj.jurisdictionCounty.options[22].value="1135"
            obj.jurisdictionCounty.options[22].text="Grant Parish"
            obj.jurisdictionCounty.options[23].value="1136"
            obj.jurisdictionCounty.options[23].text="Iberia Parish"
            obj.jurisdictionCounty.options[24].value="1137"
            obj.jurisdictionCounty.options[24].text="Iberville Parish"
            obj.jurisdictionCounty.options[25].value="1138"
            obj.jurisdictionCounty.options[25].text="Jackson Parish"
            obj.jurisdictionCounty.options[26].value="1139"
            obj.jurisdictionCounty.options[26].text="Jefferson Parish"
            obj.jurisdictionCounty.options[27].value="1140"
            obj.jurisdictionCounty.options[27].text="Jefferson Davis Parish"
            obj.jurisdictionCounty.options[28].value="1141"
            obj.jurisdictionCounty.options[28].text="La Salle Parish"
            obj.jurisdictionCounty.options[29].value="1142"
            obj.jurisdictionCounty.options[29].text="Lafayette Parish"
            obj.jurisdictionCounty.options[30].value="1143"
            obj.jurisdictionCounty.options[30].text="Lafourche Parish"
            obj.jurisdictionCounty.options[31].value="1144"
            obj.jurisdictionCounty.options[31].text="Lincoln Parish"
            obj.jurisdictionCounty.options[32].value="1145"
            obj.jurisdictionCounty.options[32].text="Livingston Parish"
            obj.jurisdictionCounty.options[33].value="1146"
            obj.jurisdictionCounty.options[33].text="Madison Parish"
            obj.jurisdictionCounty.options[34].value="1147"
            obj.jurisdictionCounty.options[34].text="Morehouse Parish"
            obj.jurisdictionCounty.options[35].value="1148"
            obj.jurisdictionCounty.options[35].text="Natchitoches Parish"
            obj.jurisdictionCounty.options[36].value="1149"
            obj.jurisdictionCounty.options[36].text="Orleans Parish"
            obj.jurisdictionCounty.options[37].value="1150"
            obj.jurisdictionCounty.options[37].text="Ouachita Parish"
            obj.jurisdictionCounty.options[38].value="1151"
            obj.jurisdictionCounty.options[38].text="Plaquemines Parish"
            obj.jurisdictionCounty.options[39].value="1152"
            obj.jurisdictionCounty.options[39].text="Pointe Coupee Parish"
            obj.jurisdictionCounty.options[40].value="1153"
            obj.jurisdictionCounty.options[40].text="Rapides Parish"
            obj.jurisdictionCounty.options[41].value="1154"
            obj.jurisdictionCounty.options[41].text="Red River Parish"
            obj.jurisdictionCounty.options[42].value="1155"
            obj.jurisdictionCounty.options[42].text="Richland Parish"
            obj.jurisdictionCounty.options[43].value="1156"
            obj.jurisdictionCounty.options[43].text="Sabine Parish"
            obj.jurisdictionCounty.options[44].value="1158"
            obj.jurisdictionCounty.options[44].text="Saint Bernard Parish"
            obj.jurisdictionCounty.options[45].value="1159"
            obj.jurisdictionCounty.options[45].text="Saint Charles Parish"
            obj.jurisdictionCounty.options[46].value="1160"
            obj.jurisdictionCounty.options[46].text="Saint Helena Parish"
            obj.jurisdictionCounty.options[47].value="1161"
            obj.jurisdictionCounty.options[47].text="Saint James Parish"
            obj.jurisdictionCounty.options[48].value="1162"
            obj.jurisdictionCounty.options[48].text="Saint John the Baptist Parish"
            obj.jurisdictionCounty.options[49].value="1163"
            obj.jurisdictionCounty.options[49].text="Saint Landry Parish"
            obj.jurisdictionCounty.options[50].value="1164"
            obj.jurisdictionCounty.options[50].text="Saint Martin Parish"
            obj.jurisdictionCounty.options[51].value="1165"
            obj.jurisdictionCounty.options[51].text="Saint Mary Parish"
            obj.jurisdictionCounty.options[52].value="1157"
            obj.jurisdictionCounty.options[52].text="Saint Tammany Parish"
            obj.jurisdictionCounty.options[53].value="1166"
            obj.jurisdictionCounty.options[53].text="Tangipahoa Parish"
            obj.jurisdictionCounty.options[54].value="1167"
            obj.jurisdictionCounty.options[54].text="Tensas Parish"
            obj.jurisdictionCounty.options[55].value="1168"
            obj.jurisdictionCounty.options[55].text="Terrebonne Parish"
            obj.jurisdictionCounty.options[56].value="1169"
            obj.jurisdictionCounty.options[56].text="Union Parish"
            obj.jurisdictionCounty.options[57].value="1170"
            obj.jurisdictionCounty.options[57].text="Vermillion Parish"
            obj.jurisdictionCounty.options[58].value="1171"
            obj.jurisdictionCounty.options[58].text="Vernon Parish"
            obj.jurisdictionCounty.options[59].value="1172"
            obj.jurisdictionCounty.options[59].text="Washington Parish"
            obj.jurisdictionCounty.options[60].value="1173"
            obj.jurisdictionCounty.options[60].text="Webster Parish"
            obj.jurisdictionCounty.options[61].value="1174"
            obj.jurisdictionCounty.options[61].text="West Baton Rouge Parish"
            obj.jurisdictionCounty.options[62].value="1175"
            obj.jurisdictionCounty.options[62].text="West Carroll Parish"
            obj.jurisdictionCounty.options[63].value="1176"
            obj.jurisdictionCounty.options[63].text="West Feliciana Parish"
            obj.jurisdictionCounty.options[64].value="1177"
            obj.jurisdictionCounty.options[64].text="Winn Parish" 
            break;

            
         
         	case 20:
			
             
            obj.jurisdictionCounty.length=17
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1216"
            obj.jurisdictionCounty.options[1].text="Androscoggin County"
            obj.jurisdictionCounty.options[2].value="1217"
            obj.jurisdictionCounty.options[2].text="Aroostook County"
            obj.jurisdictionCounty.options[3].value="1218"
            obj.jurisdictionCounty.options[3].text="Cumberland County"
            obj.jurisdictionCounty.options[4].value="1219"
            obj.jurisdictionCounty.options[4].text="Franklin County"
            obj.jurisdictionCounty.options[5].value="1220"
            obj.jurisdictionCounty.options[5].text="Hancock County"
            obj.jurisdictionCounty.options[6].value="1221"
            obj.jurisdictionCounty.options[6].text="Kennebec County"
            obj.jurisdictionCounty.options[7].value="1222"
            obj.jurisdictionCounty.options[7].text="Knox County"
            obj.jurisdictionCounty.options[8].value="1223"
            obj.jurisdictionCounty.options[8].text="Lincoln County"
            obj.jurisdictionCounty.options[9].value="1224"
            obj.jurisdictionCounty.options[9].text="Oxford County"
            obj.jurisdictionCounty.options[10].value="1225"
            obj.jurisdictionCounty.options[10].text="Penobscot County"
            obj.jurisdictionCounty.options[11].value="1226"
            obj.jurisdictionCounty.options[11].text="Piscataquis County"
            obj.jurisdictionCounty.options[12].value="1227"
            obj.jurisdictionCounty.options[12].text="Sagadahoc County"
            obj.jurisdictionCounty.options[13].value="1228"
            obj.jurisdictionCounty.options[13].text="Somerset County"
            obj.jurisdictionCounty.options[14].value="1229"
            obj.jurisdictionCounty.options[14].text="Waldo County"
            obj.jurisdictionCounty.options[15].value="1230"
            obj.jurisdictionCounty.options[15].text="Washington County"
            obj.jurisdictionCounty.options[16].value="1231"
            obj.jurisdictionCounty.options[16].text="York County" 
            break;

            
         
         	case 21:
			
             
            obj.jurisdictionCounty.length=25
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1192"
            obj.jurisdictionCounty.options[1].text="Allegany County"
            obj.jurisdictionCounty.options[2].value="1193"
            obj.jurisdictionCounty.options[2].text="Anne Arundel County"
            obj.jurisdictionCounty.options[3].value="1194"
            obj.jurisdictionCounty.options[3].text="Baltimore County"
            obj.jurisdictionCounty.options[4].value="1195"
            obj.jurisdictionCounty.options[4].text="Baltimore City County"
            obj.jurisdictionCounty.options[5].value="1196"
            obj.jurisdictionCounty.options[5].text="Calvert County"
            obj.jurisdictionCounty.options[6].value="1197"
            obj.jurisdictionCounty.options[6].text="Caroline County"
            obj.jurisdictionCounty.options[7].value="1198"
            obj.jurisdictionCounty.options[7].text="Carroll County"
            obj.jurisdictionCounty.options[8].value="1199"
            obj.jurisdictionCounty.options[8].text="Cecil County"
            obj.jurisdictionCounty.options[9].value="1200"
            obj.jurisdictionCounty.options[9].text="Charles County"
            obj.jurisdictionCounty.options[10].value="1201"
            obj.jurisdictionCounty.options[10].text="Dorchester County"
            obj.jurisdictionCounty.options[11].value="1202"
            obj.jurisdictionCounty.options[11].text="Frederick County"
            obj.jurisdictionCounty.options[12].value="1203"
            obj.jurisdictionCounty.options[12].text="Garrett County"
            obj.jurisdictionCounty.options[13].value="1204"
            obj.jurisdictionCounty.options[13].text="Harford County"
            obj.jurisdictionCounty.options[14].value="1205"
            obj.jurisdictionCounty.options[14].text="Howard County"
            obj.jurisdictionCounty.options[15].value="1206"
            obj.jurisdictionCounty.options[15].text="Kent County"
            obj.jurisdictionCounty.options[16].value="1207"
            obj.jurisdictionCounty.options[16].text="Montgomery County"
            obj.jurisdictionCounty.options[17].value="1208"
            obj.jurisdictionCounty.options[17].text="Prince Georges County"
            obj.jurisdictionCounty.options[18].value="1209"
            obj.jurisdictionCounty.options[18].text="Queen Annes County"
            obj.jurisdictionCounty.options[19].value="1210"
            obj.jurisdictionCounty.options[19].text="Saint Marys County"
            obj.jurisdictionCounty.options[20].value="1211"
            obj.jurisdictionCounty.options[20].text="Somerset County"
            obj.jurisdictionCounty.options[21].value="1212"
            obj.jurisdictionCounty.options[21].text="Talbot County"
            obj.jurisdictionCounty.options[22].value="1213"
            obj.jurisdictionCounty.options[22].text="Washington County"
            obj.jurisdictionCounty.options[23].value="1214"
            obj.jurisdictionCounty.options[23].text="Wicomico County"
            obj.jurisdictionCounty.options[24].value="1215"
            obj.jurisdictionCounty.options[24].text="Worcester County" 
            break;

            
         
         	case 22:
			
             
            obj.jurisdictionCounty.length=15
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1178"
            obj.jurisdictionCounty.options[1].text="Barnstable County"
            obj.jurisdictionCounty.options[2].value="1179"
            obj.jurisdictionCounty.options[2].text="Berkshire County"
            obj.jurisdictionCounty.options[3].value="1180"
            obj.jurisdictionCounty.options[3].text="Bristol County"
            obj.jurisdictionCounty.options[4].value="1181"
            obj.jurisdictionCounty.options[4].text="Dukes County"
            obj.jurisdictionCounty.options[5].value="1182"
            obj.jurisdictionCounty.options[5].text="Essex County"
            obj.jurisdictionCounty.options[6].value="1183"
            obj.jurisdictionCounty.options[6].text="Franklin County"
            obj.jurisdictionCounty.options[7].value="1184"
            obj.jurisdictionCounty.options[7].text="Hampden County"
            obj.jurisdictionCounty.options[8].value="1185"
            obj.jurisdictionCounty.options[8].text="Hampshire County"
            obj.jurisdictionCounty.options[9].value="1186"
            obj.jurisdictionCounty.options[9].text="Middlesex County"
            obj.jurisdictionCounty.options[10].value="1187"
            obj.jurisdictionCounty.options[10].text="Nantucket County"
            obj.jurisdictionCounty.options[11].value="1188"
            obj.jurisdictionCounty.options[11].text="Norfolk County"
            obj.jurisdictionCounty.options[12].value="1189"
            obj.jurisdictionCounty.options[12].text="Plymouth County"
            obj.jurisdictionCounty.options[13].value="1190"
            obj.jurisdictionCounty.options[13].text="Suffolk County"
            obj.jurisdictionCounty.options[14].value="1191"
            obj.jurisdictionCounty.options[14].text="Worcester County" 
            break;

            
         
         	case 23:
			
             
            obj.jurisdictionCounty.length=84
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1232"
            obj.jurisdictionCounty.options[1].text="Alcona County"
            obj.jurisdictionCounty.options[2].value="1233"
            obj.jurisdictionCounty.options[2].text="Alger County"
            obj.jurisdictionCounty.options[3].value="1234"
            obj.jurisdictionCounty.options[3].text="Allegan County"
            obj.jurisdictionCounty.options[4].value="1235"
            obj.jurisdictionCounty.options[4].text="Alpena County"
            obj.jurisdictionCounty.options[5].value="1236"
            obj.jurisdictionCounty.options[5].text="Antrim County"
            obj.jurisdictionCounty.options[6].value="1237"
            obj.jurisdictionCounty.options[6].text="Arenac County"
            obj.jurisdictionCounty.options[7].value="1238"
            obj.jurisdictionCounty.options[7].text="Baraga County"
            obj.jurisdictionCounty.options[8].value="1239"
            obj.jurisdictionCounty.options[8].text="Barry County"
            obj.jurisdictionCounty.options[9].value="1240"
            obj.jurisdictionCounty.options[9].text="Bay County"
            obj.jurisdictionCounty.options[10].value="1241"
            obj.jurisdictionCounty.options[10].text="Benzie County"
            obj.jurisdictionCounty.options[11].value="1242"
            obj.jurisdictionCounty.options[11].text="Berrien County"
            obj.jurisdictionCounty.options[12].value="1243"
            obj.jurisdictionCounty.options[12].text="Branch County"
            obj.jurisdictionCounty.options[13].value="1244"
            obj.jurisdictionCounty.options[13].text="Calhoun County"
            obj.jurisdictionCounty.options[14].value="1245"
            obj.jurisdictionCounty.options[14].text="Cass County"
            obj.jurisdictionCounty.options[15].value="1246"
            obj.jurisdictionCounty.options[15].text="Charlevoix County"
            obj.jurisdictionCounty.options[16].value="1247"
            obj.jurisdictionCounty.options[16].text="Cheboygan County"
            obj.jurisdictionCounty.options[17].value="1248"
            obj.jurisdictionCounty.options[17].text="Chippewa County"
            obj.jurisdictionCounty.options[18].value="1249"
            obj.jurisdictionCounty.options[18].text="Clare County"
            obj.jurisdictionCounty.options[19].value="1250"
            obj.jurisdictionCounty.options[19].text="Clinton County"
            obj.jurisdictionCounty.options[20].value="1251"
            obj.jurisdictionCounty.options[20].text="Crawford County"
            obj.jurisdictionCounty.options[21].value="1252"
            obj.jurisdictionCounty.options[21].text="Delta County"
            obj.jurisdictionCounty.options[22].value="1253"
            obj.jurisdictionCounty.options[22].text="Dickinson County"
            obj.jurisdictionCounty.options[23].value="1254"
            obj.jurisdictionCounty.options[23].text="Eaton County"
            obj.jurisdictionCounty.options[24].value="1255"
            obj.jurisdictionCounty.options[24].text="Emmet County"
            obj.jurisdictionCounty.options[25].value="1256"
            obj.jurisdictionCounty.options[25].text="Genesee County"
            obj.jurisdictionCounty.options[26].value="1257"
            obj.jurisdictionCounty.options[26].text="Gladwin County"
            obj.jurisdictionCounty.options[27].value="1258"
            obj.jurisdictionCounty.options[27].text="Gogebic County"
            obj.jurisdictionCounty.options[28].value="1259"
            obj.jurisdictionCounty.options[28].text="Grand Traverse County"
            obj.jurisdictionCounty.options[29].value="1260"
            obj.jurisdictionCounty.options[29].text="Gratiot County"
            obj.jurisdictionCounty.options[30].value="1261"
            obj.jurisdictionCounty.options[30].text="Hillsdale County"
            obj.jurisdictionCounty.options[31].value="1262"
            obj.jurisdictionCounty.options[31].text="Houghton County"
            obj.jurisdictionCounty.options[32].value="1263"
            obj.jurisdictionCounty.options[32].text="Huron County"
            obj.jurisdictionCounty.options[33].value="1264"
            obj.jurisdictionCounty.options[33].text="Ingham County"
            obj.jurisdictionCounty.options[34].value="1265"
            obj.jurisdictionCounty.options[34].text="Ionia County"
            obj.jurisdictionCounty.options[35].value="1266"
            obj.jurisdictionCounty.options[35].text="Iosco County"
            obj.jurisdictionCounty.options[36].value="1267"
            obj.jurisdictionCounty.options[36].text="Iron County"
            obj.jurisdictionCounty.options[37].value="1268"
            obj.jurisdictionCounty.options[37].text="Isabella County"
            obj.jurisdictionCounty.options[38].value="1269"
            obj.jurisdictionCounty.options[38].text="Jackson County"
            obj.jurisdictionCounty.options[39].value="1270"
            obj.jurisdictionCounty.options[39].text="Kalamazoo County"
            obj.jurisdictionCounty.options[40].value="1271"
            obj.jurisdictionCounty.options[40].text="Kalkaska County"
            obj.jurisdictionCounty.options[41].value="1272"
            obj.jurisdictionCounty.options[41].text="Kent County"
            obj.jurisdictionCounty.options[42].value="1273"
            obj.jurisdictionCounty.options[42].text="Keweenaw County"
            obj.jurisdictionCounty.options[43].value="1274"
            obj.jurisdictionCounty.options[43].text="Lake County"
            obj.jurisdictionCounty.options[44].value="1275"
            obj.jurisdictionCounty.options[44].text="Lapeer County"
            obj.jurisdictionCounty.options[45].value="1276"
            obj.jurisdictionCounty.options[45].text="Leelanau County"
            obj.jurisdictionCounty.options[46].value="1277"
            obj.jurisdictionCounty.options[46].text="Lenawee County"
            obj.jurisdictionCounty.options[47].value="1278"
            obj.jurisdictionCounty.options[47].text="Livingston County"
            obj.jurisdictionCounty.options[48].value="1279"
            obj.jurisdictionCounty.options[48].text="Luce County"
            obj.jurisdictionCounty.options[49].value="1280"
            obj.jurisdictionCounty.options[49].text="Mackinac County"
            obj.jurisdictionCounty.options[50].value="1281"
            obj.jurisdictionCounty.options[50].text="Macomb County"
            obj.jurisdictionCounty.options[51].value="1282"
            obj.jurisdictionCounty.options[51].text="Manistee County"
            obj.jurisdictionCounty.options[52].value="1283"
            obj.jurisdictionCounty.options[52].text="Marquette County"
            obj.jurisdictionCounty.options[53].value="1284"
            obj.jurisdictionCounty.options[53].text="Mason County"
            obj.jurisdictionCounty.options[54].value="1285"
            obj.jurisdictionCounty.options[54].text="Mecosta County"
            obj.jurisdictionCounty.options[55].value="1286"
            obj.jurisdictionCounty.options[55].text="Menominee County"
            obj.jurisdictionCounty.options[56].value="1287"
            obj.jurisdictionCounty.options[56].text="Midland County"
            obj.jurisdictionCounty.options[57].value="1288"
            obj.jurisdictionCounty.options[57].text="Missaukee County"
            obj.jurisdictionCounty.options[58].value="1289"
            obj.jurisdictionCounty.options[58].text="Monroe County"
            obj.jurisdictionCounty.options[59].value="1290"
            obj.jurisdictionCounty.options[59].text="Montcalm County"
            obj.jurisdictionCounty.options[60].value="1291"
            obj.jurisdictionCounty.options[60].text="Montmorency County"
            obj.jurisdictionCounty.options[61].value="1292"
            obj.jurisdictionCounty.options[61].text="Muskegon County"
            obj.jurisdictionCounty.options[62].value="1293"
            obj.jurisdictionCounty.options[62].text="Newaygo County"
            obj.jurisdictionCounty.options[63].value="1294"
            obj.jurisdictionCounty.options[63].text="Oakland County"
            obj.jurisdictionCounty.options[64].value="1295"
            obj.jurisdictionCounty.options[64].text="Oceana County"
            obj.jurisdictionCounty.options[65].value="1296"
            obj.jurisdictionCounty.options[65].text="Ogemaw County"
            obj.jurisdictionCounty.options[66].value="1297"
            obj.jurisdictionCounty.options[66].text="Ontonagon County"
            obj.jurisdictionCounty.options[67].value="1298"
            obj.jurisdictionCounty.options[67].text="Osceola County"
            obj.jurisdictionCounty.options[68].value="1299"
            obj.jurisdictionCounty.options[68].text="Oscoda County"
            obj.jurisdictionCounty.options[69].value="1300"
            obj.jurisdictionCounty.options[69].text="Otsego County"
            obj.jurisdictionCounty.options[70].value="1301"
            obj.jurisdictionCounty.options[70].text="Ottawa County"
            obj.jurisdictionCounty.options[71].value="1302"
            obj.jurisdictionCounty.options[71].text="Presque Isle County"
            obj.jurisdictionCounty.options[72].value="1303"
            obj.jurisdictionCounty.options[72].text="Roscommon County"
            obj.jurisdictionCounty.options[73].value="1304"
            obj.jurisdictionCounty.options[73].text="Saginaw County"
            obj.jurisdictionCounty.options[74].value="1305"
            obj.jurisdictionCounty.options[74].text="Saint Clair County"
            obj.jurisdictionCounty.options[75].value="1306"
            obj.jurisdictionCounty.options[75].text="Saint Joseph County"
            obj.jurisdictionCounty.options[76].value="1307"
            obj.jurisdictionCounty.options[76].text="Sanilac County"
            obj.jurisdictionCounty.options[77].value="1308"
            obj.jurisdictionCounty.options[77].text="Schoolcraft County"
            obj.jurisdictionCounty.options[78].value="1309"
            obj.jurisdictionCounty.options[78].text="Shiawassee County"
            obj.jurisdictionCounty.options[79].value="1310"
            obj.jurisdictionCounty.options[79].text="Tuscola County"
            obj.jurisdictionCounty.options[80].value="1311"
            obj.jurisdictionCounty.options[80].text="Van Buren County"
            obj.jurisdictionCounty.options[81].value="1312"
            obj.jurisdictionCounty.options[81].text="Washtenaw County"
            obj.jurisdictionCounty.options[82].value="1313"
            obj.jurisdictionCounty.options[82].text="Wayne County"
            obj.jurisdictionCounty.options[83].value="1314"
            obj.jurisdictionCounty.options[83].text="Wexford County" 
            break;

            
         
         	case 24:
			
             
            obj.jurisdictionCounty.length=88
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1315"
            obj.jurisdictionCounty.options[1].text="Aitkin County"
            obj.jurisdictionCounty.options[2].value="1316"
            obj.jurisdictionCounty.options[2].text="Anoka County"
            obj.jurisdictionCounty.options[3].value="1317"
            obj.jurisdictionCounty.options[3].text="Becker County"
            obj.jurisdictionCounty.options[4].value="1318"
            obj.jurisdictionCounty.options[4].text="Beltrami County"
            obj.jurisdictionCounty.options[5].value="1319"
            obj.jurisdictionCounty.options[5].text="Benton County"
            obj.jurisdictionCounty.options[6].value="1320"
            obj.jurisdictionCounty.options[6].text="Big Stone County"
            obj.jurisdictionCounty.options[7].value="1321"
            obj.jurisdictionCounty.options[7].text="Blue Earth County"
            obj.jurisdictionCounty.options[8].value="1322"
            obj.jurisdictionCounty.options[8].text="Brown County"
            obj.jurisdictionCounty.options[9].value="1323"
            obj.jurisdictionCounty.options[9].text="Carlton County"
            obj.jurisdictionCounty.options[10].value="1324"
            obj.jurisdictionCounty.options[10].text="Carver County"
            obj.jurisdictionCounty.options[11].value="1325"
            obj.jurisdictionCounty.options[11].text="Cass County"
            obj.jurisdictionCounty.options[12].value="1326"
            obj.jurisdictionCounty.options[12].text="Chippewa County"
            obj.jurisdictionCounty.options[13].value="1327"
            obj.jurisdictionCounty.options[13].text="Chisago County"
            obj.jurisdictionCounty.options[14].value="1328"
            obj.jurisdictionCounty.options[14].text="Clay County"
            obj.jurisdictionCounty.options[15].value="1329"
            obj.jurisdictionCounty.options[15].text="Clearwater County"
            obj.jurisdictionCounty.options[16].value="1330"
            obj.jurisdictionCounty.options[16].text="Cook County"
            obj.jurisdictionCounty.options[17].value="1331"
            obj.jurisdictionCounty.options[17].text="Cottonwood County"
            obj.jurisdictionCounty.options[18].value="1332"
            obj.jurisdictionCounty.options[18].text="Crow Wing County"
            obj.jurisdictionCounty.options[19].value="1333"
            obj.jurisdictionCounty.options[19].text="Dakota County"
            obj.jurisdictionCounty.options[20].value="1334"
            obj.jurisdictionCounty.options[20].text="Dodge County"
            obj.jurisdictionCounty.options[21].value="1335"
            obj.jurisdictionCounty.options[21].text="Douglas County"
            obj.jurisdictionCounty.options[22].value="1336"
            obj.jurisdictionCounty.options[22].text="Faribault County"
            obj.jurisdictionCounty.options[23].value="1337"
            obj.jurisdictionCounty.options[23].text="Fillmore County"
            obj.jurisdictionCounty.options[24].value="1338"
            obj.jurisdictionCounty.options[24].text="Freeborn County"
            obj.jurisdictionCounty.options[25].value="1339"
            obj.jurisdictionCounty.options[25].text="Goodhue County"
            obj.jurisdictionCounty.options[26].value="1340"
            obj.jurisdictionCounty.options[26].text="Grant County"
            obj.jurisdictionCounty.options[27].value="1341"
            obj.jurisdictionCounty.options[27].text="Hennepin County"
            obj.jurisdictionCounty.options[28].value="1342"
            obj.jurisdictionCounty.options[28].text="Houston County"
            obj.jurisdictionCounty.options[29].value="1343"
            obj.jurisdictionCounty.options[29].text="Hubbard County"
            obj.jurisdictionCounty.options[30].value="1344"
            obj.jurisdictionCounty.options[30].text="Isanti County"
            obj.jurisdictionCounty.options[31].value="1345"
            obj.jurisdictionCounty.options[31].text="Itasca County"
            obj.jurisdictionCounty.options[32].value="1346"
            obj.jurisdictionCounty.options[32].text="Jackson County"
            obj.jurisdictionCounty.options[33].value="1347"
            obj.jurisdictionCounty.options[33].text="Kanabec County"
            obj.jurisdictionCounty.options[34].value="1348"
            obj.jurisdictionCounty.options[34].text="Kandiyohi County"
            obj.jurisdictionCounty.options[35].value="1349"
            obj.jurisdictionCounty.options[35].text="Kittson County"
            obj.jurisdictionCounty.options[36].value="1350"
            obj.jurisdictionCounty.options[36].text="Koochiching County"
            obj.jurisdictionCounty.options[37].value="1351"
            obj.jurisdictionCounty.options[37].text="Lac Qui Parle County"
            obj.jurisdictionCounty.options[38].value="1352"
            obj.jurisdictionCounty.options[38].text="Lake County"
            obj.jurisdictionCounty.options[39].value="1353"
            obj.jurisdictionCounty.options[39].text="Lake of the Woods County"
            obj.jurisdictionCounty.options[40].value="1354"
            obj.jurisdictionCounty.options[40].text="Le Sueur County"
            obj.jurisdictionCounty.options[41].value="1355"
            obj.jurisdictionCounty.options[41].text="Lincoln County"
            obj.jurisdictionCounty.options[42].value="1356"
            obj.jurisdictionCounty.options[42].text="Lyon County"
            obj.jurisdictionCounty.options[43].value="1357"
            obj.jurisdictionCounty.options[43].text="Mahnomen County"
            obj.jurisdictionCounty.options[44].value="1358"
            obj.jurisdictionCounty.options[44].text="Marshall County"
            obj.jurisdictionCounty.options[45].value="1359"
            obj.jurisdictionCounty.options[45].text="Martin County"
            obj.jurisdictionCounty.options[46].value="1360"
            obj.jurisdictionCounty.options[46].text="McLeod County"
            obj.jurisdictionCounty.options[47].value="1361"
            obj.jurisdictionCounty.options[47].text="Meeker County"
            obj.jurisdictionCounty.options[48].value="1362"
            obj.jurisdictionCounty.options[48].text="Mille Lacs County"
            obj.jurisdictionCounty.options[49].value="1363"
            obj.jurisdictionCounty.options[49].text="Morrison County"
            obj.jurisdictionCounty.options[50].value="1364"
            obj.jurisdictionCounty.options[50].text="Mower County"
            obj.jurisdictionCounty.options[51].value="1365"
            obj.jurisdictionCounty.options[51].text="Murray County"
            obj.jurisdictionCounty.options[52].value="1366"
            obj.jurisdictionCounty.options[52].text="Nicollet County"
            obj.jurisdictionCounty.options[53].value="1367"
            obj.jurisdictionCounty.options[53].text="Nobles County"
            obj.jurisdictionCounty.options[54].value="1368"
            obj.jurisdictionCounty.options[54].text="Norman County"
            obj.jurisdictionCounty.options[55].value="1369"
            obj.jurisdictionCounty.options[55].text="Olmsted County"
            obj.jurisdictionCounty.options[56].value="1370"
            obj.jurisdictionCounty.options[56].text="Otter Tail County"
            obj.jurisdictionCounty.options[57].value="1371"
            obj.jurisdictionCounty.options[57].text="Pennington County"
            obj.jurisdictionCounty.options[58].value="1372"
            obj.jurisdictionCounty.options[58].text="Pine County"
            obj.jurisdictionCounty.options[59].value="1373"
            obj.jurisdictionCounty.options[59].text="Pipestone County"
            obj.jurisdictionCounty.options[60].value="1374"
            obj.jurisdictionCounty.options[60].text="Polk County"
            obj.jurisdictionCounty.options[61].value="1375"
            obj.jurisdictionCounty.options[61].text="Pope County"
            obj.jurisdictionCounty.options[62].value="1376"
            obj.jurisdictionCounty.options[62].text="Ramsey County"
            obj.jurisdictionCounty.options[63].value="1377"
            obj.jurisdictionCounty.options[63].text="Red Lake County"
            obj.jurisdictionCounty.options[64].value="1378"
            obj.jurisdictionCounty.options[64].text="Redwood County"
            obj.jurisdictionCounty.options[65].value="1379"
            obj.jurisdictionCounty.options[65].text="Renville County"
            obj.jurisdictionCounty.options[66].value="1380"
            obj.jurisdictionCounty.options[66].text="Rice County"
            obj.jurisdictionCounty.options[67].value="1381"
            obj.jurisdictionCounty.options[67].text="Rock County"
            obj.jurisdictionCounty.options[68].value="1382"
            obj.jurisdictionCounty.options[68].text="Roseau County"
            obj.jurisdictionCounty.options[69].value="1383"
            obj.jurisdictionCounty.options[69].text="Saint Louis County"
            obj.jurisdictionCounty.options[70].value="1384"
            obj.jurisdictionCounty.options[70].text="Scott County"
            obj.jurisdictionCounty.options[71].value="1385"
            obj.jurisdictionCounty.options[71].text="Sherburne County"
            obj.jurisdictionCounty.options[72].value="1386"
            obj.jurisdictionCounty.options[72].text="Sibley County"
            obj.jurisdictionCounty.options[73].value="1387"
            obj.jurisdictionCounty.options[73].text="Stearns County"
            obj.jurisdictionCounty.options[74].value="1388"
            obj.jurisdictionCounty.options[74].text="Steele County"
            obj.jurisdictionCounty.options[75].value="1389"
            obj.jurisdictionCounty.options[75].text="Stevens County"
            obj.jurisdictionCounty.options[76].value="1390"
            obj.jurisdictionCounty.options[76].text="Swift County"
            obj.jurisdictionCounty.options[77].value="1391"
            obj.jurisdictionCounty.options[77].text="Todd County"
            obj.jurisdictionCounty.options[78].value="1392"
            obj.jurisdictionCounty.options[78].text="Traverse County"
            obj.jurisdictionCounty.options[79].value="1393"
            obj.jurisdictionCounty.options[79].text="Wabasha County"
            obj.jurisdictionCounty.options[80].value="1394"
            obj.jurisdictionCounty.options[80].text="Wadena County"
            obj.jurisdictionCounty.options[81].value="1395"
            obj.jurisdictionCounty.options[81].text="Waseca County"
            obj.jurisdictionCounty.options[82].value="1396"
            obj.jurisdictionCounty.options[82].text="Washington County"
            obj.jurisdictionCounty.options[83].value="1397"
            obj.jurisdictionCounty.options[83].text="Watonwan County"
            obj.jurisdictionCounty.options[84].value="1398"
            obj.jurisdictionCounty.options[84].text="Wilkin County"
            obj.jurisdictionCounty.options[85].value="1399"
            obj.jurisdictionCounty.options[85].text="Winona County"
            obj.jurisdictionCounty.options[86].value="1400"
            obj.jurisdictionCounty.options[86].text="Wright County"
            obj.jurisdictionCounty.options[87].value="1401"
            obj.jurisdictionCounty.options[87].text="Yellow Medicine County" 
            break;

            
         
         	case 25:
			
             
            obj.jurisdictionCounty.length=83
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1517"
            obj.jurisdictionCounty.options[1].text="Adams County"
            obj.jurisdictionCounty.options[2].value="1518"
            obj.jurisdictionCounty.options[2].text="Alcorn County"
            obj.jurisdictionCounty.options[3].value="1519"
            obj.jurisdictionCounty.options[3].text="Amite County"
            obj.jurisdictionCounty.options[4].value="1520"
            obj.jurisdictionCounty.options[4].text="Attala County"
            obj.jurisdictionCounty.options[5].value="1521"
            obj.jurisdictionCounty.options[5].text="Benton County"
            obj.jurisdictionCounty.options[6].value="1522"
            obj.jurisdictionCounty.options[6].text="Bolivar County"
            obj.jurisdictionCounty.options[7].value="1523"
            obj.jurisdictionCounty.options[7].text="Calhoun County"
            obj.jurisdictionCounty.options[8].value="1524"
            obj.jurisdictionCounty.options[8].text="Carroll County"
            obj.jurisdictionCounty.options[9].value="1525"
            obj.jurisdictionCounty.options[9].text="Chickasaw County"
            obj.jurisdictionCounty.options[10].value="1526"
            obj.jurisdictionCounty.options[10].text="Choctaw County"
            obj.jurisdictionCounty.options[11].value="1527"
            obj.jurisdictionCounty.options[11].text="Claiborne County"
            obj.jurisdictionCounty.options[12].value="1528"
            obj.jurisdictionCounty.options[12].text="Clarke County"
            obj.jurisdictionCounty.options[13].value="1529"
            obj.jurisdictionCounty.options[13].text="Clay County"
            obj.jurisdictionCounty.options[14].value="1530"
            obj.jurisdictionCounty.options[14].text="Coahoma County"
            obj.jurisdictionCounty.options[15].value="1531"
            obj.jurisdictionCounty.options[15].text="Copiah County"
            obj.jurisdictionCounty.options[16].value="1532"
            obj.jurisdictionCounty.options[16].text="Covington County"
            obj.jurisdictionCounty.options[17].value="1533"
            obj.jurisdictionCounty.options[17].text="DeSoto County"
            obj.jurisdictionCounty.options[18].value="1534"
            obj.jurisdictionCounty.options[18].text="Forrest County"
            obj.jurisdictionCounty.options[19].value="1535"
            obj.jurisdictionCounty.options[19].text="Franklin County"
            obj.jurisdictionCounty.options[20].value="1536"
            obj.jurisdictionCounty.options[20].text="George County"
            obj.jurisdictionCounty.options[21].value="1537"
            obj.jurisdictionCounty.options[21].text="Greene County"
            obj.jurisdictionCounty.options[22].value="1538"
            obj.jurisdictionCounty.options[22].text="Grenada County"
            obj.jurisdictionCounty.options[23].value="1539"
            obj.jurisdictionCounty.options[23].text="Hancock County"
            obj.jurisdictionCounty.options[24].value="1540"
            obj.jurisdictionCounty.options[24].text="Harrison County"
            obj.jurisdictionCounty.options[25].value="1541"
            obj.jurisdictionCounty.options[25].text="Hinds County"
            obj.jurisdictionCounty.options[26].value="1542"
            obj.jurisdictionCounty.options[26].text="Holmes County"
            obj.jurisdictionCounty.options[27].value="1543"
            obj.jurisdictionCounty.options[27].text="Humphreys County"
            obj.jurisdictionCounty.options[28].value="1544"
            obj.jurisdictionCounty.options[28].text="Issaquena County"
            obj.jurisdictionCounty.options[29].value="1545"
            obj.jurisdictionCounty.options[29].text="Itawamba County"
            obj.jurisdictionCounty.options[30].value="1546"
            obj.jurisdictionCounty.options[30].text="Jackson County"
            obj.jurisdictionCounty.options[31].value="1547"
            obj.jurisdictionCounty.options[31].text="Jasper County"
            obj.jurisdictionCounty.options[32].value="1548"
            obj.jurisdictionCounty.options[32].text="Jefferson County"
            obj.jurisdictionCounty.options[33].value="1549"
            obj.jurisdictionCounty.options[33].text="Jefferson Davis County"
            obj.jurisdictionCounty.options[34].value="1550"
            obj.jurisdictionCounty.options[34].text="Jones County"
            obj.jurisdictionCounty.options[35].value="1551"
            obj.jurisdictionCounty.options[35].text="Kemper County"
            obj.jurisdictionCounty.options[36].value="1552"
            obj.jurisdictionCounty.options[36].text="Lafayette County"
            obj.jurisdictionCounty.options[37].value="1553"
            obj.jurisdictionCounty.options[37].text="Lamar County"
            obj.jurisdictionCounty.options[38].value="1554"
            obj.jurisdictionCounty.options[38].text="Lauderdale County"
            obj.jurisdictionCounty.options[39].value="1555"
            obj.jurisdictionCounty.options[39].text="Lawrence County"
            obj.jurisdictionCounty.options[40].value="1556"
            obj.jurisdictionCounty.options[40].text="Leake County"
            obj.jurisdictionCounty.options[41].value="1557"
            obj.jurisdictionCounty.options[41].text="Lee County"
            obj.jurisdictionCounty.options[42].value="1558"
            obj.jurisdictionCounty.options[42].text="Leflore County"
            obj.jurisdictionCounty.options[43].value="1559"
            obj.jurisdictionCounty.options[43].text="Lincoln County"
            obj.jurisdictionCounty.options[44].value="1560"
            obj.jurisdictionCounty.options[44].text="Lowndes County"
            obj.jurisdictionCounty.options[45].value="1561"
            obj.jurisdictionCounty.options[45].text="Madison County"
            obj.jurisdictionCounty.options[46].value="1562"
            obj.jurisdictionCounty.options[46].text="Marion County"
            obj.jurisdictionCounty.options[47].value="1563"
            obj.jurisdictionCounty.options[47].text="Marshall County"
            obj.jurisdictionCounty.options[48].value="1564"
            obj.jurisdictionCounty.options[48].text="Monroe County"
            obj.jurisdictionCounty.options[49].value="1565"
            obj.jurisdictionCounty.options[49].text="Montgomery County"
            obj.jurisdictionCounty.options[50].value="1566"
            obj.jurisdictionCounty.options[50].text="Neshoba County"
            obj.jurisdictionCounty.options[51].value="1567"
            obj.jurisdictionCounty.options[51].text="Newton County"
            obj.jurisdictionCounty.options[52].value="1568"
            obj.jurisdictionCounty.options[52].text="Noxubee County"
            obj.jurisdictionCounty.options[53].value="1569"
            obj.jurisdictionCounty.options[53].text="Oktibbeha County"
            obj.jurisdictionCounty.options[54].value="1570"
            obj.jurisdictionCounty.options[54].text="Panola County"
            obj.jurisdictionCounty.options[55].value="1571"
            obj.jurisdictionCounty.options[55].text="Pearl River County"
            obj.jurisdictionCounty.options[56].value="1572"
            obj.jurisdictionCounty.options[56].text="Perry County"
            obj.jurisdictionCounty.options[57].value="1573"
            obj.jurisdictionCounty.options[57].text="Pike County"
            obj.jurisdictionCounty.options[58].value="1574"
            obj.jurisdictionCounty.options[58].text="Pontotoc County"
            obj.jurisdictionCounty.options[59].value="1575"
            obj.jurisdictionCounty.options[59].text="Prentiss County"
            obj.jurisdictionCounty.options[60].value="1576"
            obj.jurisdictionCounty.options[60].text="Quitman County"
            obj.jurisdictionCounty.options[61].value="1577"
            obj.jurisdictionCounty.options[61].text="Rankin County"
            obj.jurisdictionCounty.options[62].value="1578"
            obj.jurisdictionCounty.options[62].text="Scott County"
            obj.jurisdictionCounty.options[63].value="1579"
            obj.jurisdictionCounty.options[63].text="Sharkey County"
            obj.jurisdictionCounty.options[64].value="1580"
            obj.jurisdictionCounty.options[64].text="Simpson County"
            obj.jurisdictionCounty.options[65].value="1581"
            obj.jurisdictionCounty.options[65].text="Smith County"
            obj.jurisdictionCounty.options[66].value="3171"
            obj.jurisdictionCounty.options[66].text="Stone County"
            obj.jurisdictionCounty.options[67].value="1582"
            obj.jurisdictionCounty.options[67].text="Sunflower County"
            obj.jurisdictionCounty.options[68].value="1583"
            obj.jurisdictionCounty.options[68].text="Tallahatchie County"
            obj.jurisdictionCounty.options[69].value="1584"
            obj.jurisdictionCounty.options[69].text="Tate County"
            obj.jurisdictionCounty.options[70].value="1585"
            obj.jurisdictionCounty.options[70].text="Tippah County"
            obj.jurisdictionCounty.options[71].value="1586"
            obj.jurisdictionCounty.options[71].text="Tishomingo County"
            obj.jurisdictionCounty.options[72].value="1587"
            obj.jurisdictionCounty.options[72].text="Tunica County"
            obj.jurisdictionCounty.options[73].value="1588"
            obj.jurisdictionCounty.options[73].text="Union County"
            obj.jurisdictionCounty.options[74].value="1589"
            obj.jurisdictionCounty.options[74].text="Walthall County"
            obj.jurisdictionCounty.options[75].value="1590"
            obj.jurisdictionCounty.options[75].text="Warren County"
            obj.jurisdictionCounty.options[76].value="1591"
            obj.jurisdictionCounty.options[76].text="Washington County"
            obj.jurisdictionCounty.options[77].value="1592"
            obj.jurisdictionCounty.options[77].text="Wayne County"
            obj.jurisdictionCounty.options[78].value="1593"
            obj.jurisdictionCounty.options[78].text="Webster County"
            obj.jurisdictionCounty.options[79].value="1594"
            obj.jurisdictionCounty.options[79].text="Wilkinson County"
            obj.jurisdictionCounty.options[80].value="1595"
            obj.jurisdictionCounty.options[80].text="Winston County"
            obj.jurisdictionCounty.options[81].value="1596"
            obj.jurisdictionCounty.options[81].text="Yalobusha County"
            obj.jurisdictionCounty.options[82].value="1597"
            obj.jurisdictionCounty.options[82].text="Yazoo County" 
            break;

            
         
         	case 26:
			
             
            obj.jurisdictionCounty.length=116
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1402"
            obj.jurisdictionCounty.options[1].text="Adair County"
            obj.jurisdictionCounty.options[2].value="1403"
            obj.jurisdictionCounty.options[2].text="Andrain County"
            obj.jurisdictionCounty.options[3].value="1404"
            obj.jurisdictionCounty.options[3].text="Andrew County"
            obj.jurisdictionCounty.options[4].value="1405"
            obj.jurisdictionCounty.options[4].text="Atchison County"
            obj.jurisdictionCounty.options[5].value="1406"
            obj.jurisdictionCounty.options[5].text="Barry County"
            obj.jurisdictionCounty.options[6].value="1407"
            obj.jurisdictionCounty.options[6].text="Barton County"
            obj.jurisdictionCounty.options[7].value="1408"
            obj.jurisdictionCounty.options[7].text="Bates County"
            obj.jurisdictionCounty.options[8].value="1409"
            obj.jurisdictionCounty.options[8].text="Benton County"
            obj.jurisdictionCounty.options[9].value="1410"
            obj.jurisdictionCounty.options[9].text="Bollinger County"
            obj.jurisdictionCounty.options[10].value="1411"
            obj.jurisdictionCounty.options[10].text="Boone County"
            obj.jurisdictionCounty.options[11].value="1412"
            obj.jurisdictionCounty.options[11].text="Buchanan County"
            obj.jurisdictionCounty.options[12].value="1413"
            obj.jurisdictionCounty.options[12].text="Butler County"
            obj.jurisdictionCounty.options[13].value="1414"
            obj.jurisdictionCounty.options[13].text="Caldwell County"
            obj.jurisdictionCounty.options[14].value="1415"
            obj.jurisdictionCounty.options[14].text="Callaway County"
            obj.jurisdictionCounty.options[15].value="1416"
            obj.jurisdictionCounty.options[15].text="Camden County"
            obj.jurisdictionCounty.options[16].value="1417"
            obj.jurisdictionCounty.options[16].text="Cape Girardeau County"
            obj.jurisdictionCounty.options[17].value="1418"
            obj.jurisdictionCounty.options[17].text="Carroll County"
            obj.jurisdictionCounty.options[18].value="1419"
            obj.jurisdictionCounty.options[18].text="Carter County"
            obj.jurisdictionCounty.options[19].value="1420"
            obj.jurisdictionCounty.options[19].text="Cass County"
            obj.jurisdictionCounty.options[20].value="1421"
            obj.jurisdictionCounty.options[20].text="Cedar County"
            obj.jurisdictionCounty.options[21].value="1422"
            obj.jurisdictionCounty.options[21].text="Chariton County"
            obj.jurisdictionCounty.options[22].value="1423"
            obj.jurisdictionCounty.options[22].text="Christian County"
            obj.jurisdictionCounty.options[23].value="1424"
            obj.jurisdictionCounty.options[23].text="Clark County"
            obj.jurisdictionCounty.options[24].value="1425"
            obj.jurisdictionCounty.options[24].text="Clay County"
            obj.jurisdictionCounty.options[25].value="1426"
            obj.jurisdictionCounty.options[25].text="Clinton County"
            obj.jurisdictionCounty.options[26].value="1427"
            obj.jurisdictionCounty.options[26].text="Cole County"
            obj.jurisdictionCounty.options[27].value="1428"
            obj.jurisdictionCounty.options[27].text="Cooper County"
            obj.jurisdictionCounty.options[28].value="1429"
            obj.jurisdictionCounty.options[28].text="Crawford County"
            obj.jurisdictionCounty.options[29].value="1430"
            obj.jurisdictionCounty.options[29].text="Dade County"
            obj.jurisdictionCounty.options[30].value="1431"
            obj.jurisdictionCounty.options[30].text="Dallas County"
            obj.jurisdictionCounty.options[31].value="1432"
            obj.jurisdictionCounty.options[31].text="Daviess County"
            obj.jurisdictionCounty.options[32].value="1433"
            obj.jurisdictionCounty.options[32].text="DeKalb County"
            obj.jurisdictionCounty.options[33].value="1434"
            obj.jurisdictionCounty.options[33].text="Dent County"
            obj.jurisdictionCounty.options[34].value="1435"
            obj.jurisdictionCounty.options[34].text="Douglas County"
            obj.jurisdictionCounty.options[35].value="1436"
            obj.jurisdictionCounty.options[35].text="Dunklin County"
            obj.jurisdictionCounty.options[36].value="1437"
            obj.jurisdictionCounty.options[36].text="Franklin County"
            obj.jurisdictionCounty.options[37].value="1438"
            obj.jurisdictionCounty.options[37].text="Gasconade County"
            obj.jurisdictionCounty.options[38].value="1439"
            obj.jurisdictionCounty.options[38].text="Gentry County"
            obj.jurisdictionCounty.options[39].value="1440"
            obj.jurisdictionCounty.options[39].text="Greene County"
            obj.jurisdictionCounty.options[40].value="1441"
            obj.jurisdictionCounty.options[40].text="Grundy County"
            obj.jurisdictionCounty.options[41].value="1442"
            obj.jurisdictionCounty.options[41].text="Harrison County"
            obj.jurisdictionCounty.options[42].value="1443"
            obj.jurisdictionCounty.options[42].text="Henry County"
            obj.jurisdictionCounty.options[43].value="1444"
            obj.jurisdictionCounty.options[43].text="Hickory County"
            obj.jurisdictionCounty.options[44].value="1445"
            obj.jurisdictionCounty.options[44].text="Holt County"
            obj.jurisdictionCounty.options[45].value="1446"
            obj.jurisdictionCounty.options[45].text="Howard County"
            obj.jurisdictionCounty.options[46].value="1447"
            obj.jurisdictionCounty.options[46].text="Howell County"
            obj.jurisdictionCounty.options[47].value="1448"
            obj.jurisdictionCounty.options[47].text="Iron County"
            obj.jurisdictionCounty.options[48].value="1449"
            obj.jurisdictionCounty.options[48].text="Jackson County"
            obj.jurisdictionCounty.options[49].value="1450"
            obj.jurisdictionCounty.options[49].text="Jasper County"
            obj.jurisdictionCounty.options[50].value="1451"
            obj.jurisdictionCounty.options[50].text="Jefferson County"
            obj.jurisdictionCounty.options[51].value="1452"
            obj.jurisdictionCounty.options[51].text="Johnson County"
            obj.jurisdictionCounty.options[52].value="1453"
            obj.jurisdictionCounty.options[52].text="Know County"
            obj.jurisdictionCounty.options[53].value="1454"
            obj.jurisdictionCounty.options[53].text="Laclede County"
            obj.jurisdictionCounty.options[54].value="1455"
            obj.jurisdictionCounty.options[54].text="Lafayette County"
            obj.jurisdictionCounty.options[55].value="1456"
            obj.jurisdictionCounty.options[55].text="Lawrence County"
            obj.jurisdictionCounty.options[56].value="1457"
            obj.jurisdictionCounty.options[56].text="Lewis County"
            obj.jurisdictionCounty.options[57].value="1458"
            obj.jurisdictionCounty.options[57].text="Lincoln County"
            obj.jurisdictionCounty.options[58].value="1459"
            obj.jurisdictionCounty.options[58].text="Linn County"
            obj.jurisdictionCounty.options[59].value="1460"
            obj.jurisdictionCounty.options[59].text="Livingston County"
            obj.jurisdictionCounty.options[60].value="1461"
            obj.jurisdictionCounty.options[60].text="Macon County"
            obj.jurisdictionCounty.options[61].value="1462"
            obj.jurisdictionCounty.options[61].text="Madison County"
            obj.jurisdictionCounty.options[62].value="1463"
            obj.jurisdictionCounty.options[62].text="Maries County"
            obj.jurisdictionCounty.options[63].value="1464"
            obj.jurisdictionCounty.options[63].text="Marion County"
            obj.jurisdictionCounty.options[64].value="1465"
            obj.jurisdictionCounty.options[64].text="McDonald County"
            obj.jurisdictionCounty.options[65].value="1466"
            obj.jurisdictionCounty.options[65].text="Mercer County"
            obj.jurisdictionCounty.options[66].value="1467"
            obj.jurisdictionCounty.options[66].text="Miller County"
            obj.jurisdictionCounty.options[67].value="1468"
            obj.jurisdictionCounty.options[67].text="Mississippe County"
            obj.jurisdictionCounty.options[68].value="1469"
            obj.jurisdictionCounty.options[68].text="Moniteau County"
            obj.jurisdictionCounty.options[69].value="1470"
            obj.jurisdictionCounty.options[69].text="Monroe County"
            obj.jurisdictionCounty.options[70].value="1471"
            obj.jurisdictionCounty.options[70].text="Montgomery County"
            obj.jurisdictionCounty.options[71].value="1472"
            obj.jurisdictionCounty.options[71].text="Morgan County"
            obj.jurisdictionCounty.options[72].value="1473"
            obj.jurisdictionCounty.options[72].text="New Madrid County"
            obj.jurisdictionCounty.options[73].value="1474"
            obj.jurisdictionCounty.options[73].text="Newton County"
            obj.jurisdictionCounty.options[74].value="1475"
            obj.jurisdictionCounty.options[74].text="Nodaway County"
            obj.jurisdictionCounty.options[75].value="1476"
            obj.jurisdictionCounty.options[75].text="Oregon County"
            obj.jurisdictionCounty.options[76].value="1477"
            obj.jurisdictionCounty.options[76].text="Osage County"
            obj.jurisdictionCounty.options[77].value="1478"
            obj.jurisdictionCounty.options[77].text="Ozark County"
            obj.jurisdictionCounty.options[78].value="1479"
            obj.jurisdictionCounty.options[78].text="Pemiscot County"
            obj.jurisdictionCounty.options[79].value="1480"
            obj.jurisdictionCounty.options[79].text="Perry County"
            obj.jurisdictionCounty.options[80].value="1481"
            obj.jurisdictionCounty.options[80].text="Pettis County"
            obj.jurisdictionCounty.options[81].value="1482"
            obj.jurisdictionCounty.options[81].text="Phelps County"
            obj.jurisdictionCounty.options[82].value="1483"
            obj.jurisdictionCounty.options[82].text="Pike County"
            obj.jurisdictionCounty.options[83].value="1484"
            obj.jurisdictionCounty.options[83].text="Platte County"
            obj.jurisdictionCounty.options[84].value="1485"
            obj.jurisdictionCounty.options[84].text="Polk County"
            obj.jurisdictionCounty.options[85].value="1486"
            obj.jurisdictionCounty.options[85].text="Pulaski County"
            obj.jurisdictionCounty.options[86].value="1487"
            obj.jurisdictionCounty.options[86].text="Putnam County"
            obj.jurisdictionCounty.options[87].value="1488"
            obj.jurisdictionCounty.options[87].text="Ralls County"
            obj.jurisdictionCounty.options[88].value="1489"
            obj.jurisdictionCounty.options[88].text="Randolph County"
            obj.jurisdictionCounty.options[89].value="1490"
            obj.jurisdictionCounty.options[89].text="Ray County"
            obj.jurisdictionCounty.options[90].value="1491"
            obj.jurisdictionCounty.options[90].text="Reynolds County"
            obj.jurisdictionCounty.options[91].value="1492"
            obj.jurisdictionCounty.options[91].text="Ripley County"
            obj.jurisdictionCounty.options[92].value="1493"
            obj.jurisdictionCounty.options[92].text="Saint Charles County"
            obj.jurisdictionCounty.options[93].value="1494"
            obj.jurisdictionCounty.options[93].text="Saint Clair County"
            obj.jurisdictionCounty.options[94].value="1495"
            obj.jurisdictionCounty.options[94].text="Saint Francois County"
            obj.jurisdictionCounty.options[95].value="1496"
            obj.jurisdictionCounty.options[95].text="Saint Louis County"
            obj.jurisdictionCounty.options[96].value="1497"
            obj.jurisdictionCounty.options[96].text="Saint Louis City County"
            obj.jurisdictionCounty.options[97].value="1498"
            obj.jurisdictionCounty.options[97].text="Sainte Genevieve County"
            obj.jurisdictionCounty.options[98].value="1499"
            obj.jurisdictionCounty.options[98].text="Saline County"
            obj.jurisdictionCounty.options[99].value="1500"
            obj.jurisdictionCounty.options[99].text="Schuyler County"
            obj.jurisdictionCounty.options[100].value="1501"
            obj.jurisdictionCounty.options[100].text="Scotland County"
            obj.jurisdictionCounty.options[101].value="1502"
            obj.jurisdictionCounty.options[101].text="Scott County"
            obj.jurisdictionCounty.options[102].value="1503"
            obj.jurisdictionCounty.options[102].text="Shannon County"
            obj.jurisdictionCounty.options[103].value="1504"
            obj.jurisdictionCounty.options[103].text="Shelby County"
            obj.jurisdictionCounty.options[104].value="1505"
            obj.jurisdictionCounty.options[104].text="Stoddard County"
            obj.jurisdictionCounty.options[105].value="1506"
            obj.jurisdictionCounty.options[105].text="Stone County"
            obj.jurisdictionCounty.options[106].value="1507"
            obj.jurisdictionCounty.options[106].text="Sullivan County"
            obj.jurisdictionCounty.options[107].value="1508"
            obj.jurisdictionCounty.options[107].text="Taney County"
            obj.jurisdictionCounty.options[108].value="1509"
            obj.jurisdictionCounty.options[108].text="Texas County"
            obj.jurisdictionCounty.options[109].value="1510"
            obj.jurisdictionCounty.options[109].text="Vernon County"
            obj.jurisdictionCounty.options[110].value="1511"
            obj.jurisdictionCounty.options[110].text="Warren County"
            obj.jurisdictionCounty.options[111].value="1512"
            obj.jurisdictionCounty.options[111].text="Washington County"
            obj.jurisdictionCounty.options[112].value="1513"
            obj.jurisdictionCounty.options[112].text="Wayne County"
            obj.jurisdictionCounty.options[113].value="1514"
            obj.jurisdictionCounty.options[113].text="Webster County"
            obj.jurisdictionCounty.options[114].value="1515"
            obj.jurisdictionCounty.options[114].text="Worth County"
            obj.jurisdictionCounty.options[115].value="1516"
            obj.jurisdictionCounty.options[115].text="Wright County" 
            break;

            
         
         	case 27:
			
             
            obj.jurisdictionCounty.length=57
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1598"
            obj.jurisdictionCounty.options[1].text="Beaverhead County"
            obj.jurisdictionCounty.options[2].value="1599"
            obj.jurisdictionCounty.options[2].text="Big Horn County"
            obj.jurisdictionCounty.options[3].value="1600"
            obj.jurisdictionCounty.options[3].text="Blaine County"
            obj.jurisdictionCounty.options[4].value="1601"
            obj.jurisdictionCounty.options[4].text="Broadwater County"
            obj.jurisdictionCounty.options[5].value="1602"
            obj.jurisdictionCounty.options[5].text="Carbon County"
            obj.jurisdictionCounty.options[6].value="1603"
            obj.jurisdictionCounty.options[6].text="Carter County"
            obj.jurisdictionCounty.options[7].value="1604"
            obj.jurisdictionCounty.options[7].text="Cascade County"
            obj.jurisdictionCounty.options[8].value="1605"
            obj.jurisdictionCounty.options[8].text="Chouteau County"
            obj.jurisdictionCounty.options[9].value="1606"
            obj.jurisdictionCounty.options[9].text="Custer County"
            obj.jurisdictionCounty.options[10].value="1607"
            obj.jurisdictionCounty.options[10].text="Daniels County"
            obj.jurisdictionCounty.options[11].value="1608"
            obj.jurisdictionCounty.options[11].text="Dawson County"
            obj.jurisdictionCounty.options[12].value="1609"
            obj.jurisdictionCounty.options[12].text="Deer Lodge County"
            obj.jurisdictionCounty.options[13].value="1610"
            obj.jurisdictionCounty.options[13].text="Fallon County"
            obj.jurisdictionCounty.options[14].value="1611"
            obj.jurisdictionCounty.options[14].text="Fergus County"
            obj.jurisdictionCounty.options[15].value="1612"
            obj.jurisdictionCounty.options[15].text="Flathead County"
            obj.jurisdictionCounty.options[16].value="1613"
            obj.jurisdictionCounty.options[16].text="Gallatin County"
            obj.jurisdictionCounty.options[17].value="1614"
            obj.jurisdictionCounty.options[17].text="Garfield County"
            obj.jurisdictionCounty.options[18].value="1615"
            obj.jurisdictionCounty.options[18].text="Glacier County"
            obj.jurisdictionCounty.options[19].value="1616"
            obj.jurisdictionCounty.options[19].text="Golden Valley County"
            obj.jurisdictionCounty.options[20].value="1617"
            obj.jurisdictionCounty.options[20].text="Granite County"
            obj.jurisdictionCounty.options[21].value="1618"
            obj.jurisdictionCounty.options[21].text="Hill County"
            obj.jurisdictionCounty.options[22].value="1619"
            obj.jurisdictionCounty.options[22].text="Jefferson County"
            obj.jurisdictionCounty.options[23].value="1620"
            obj.jurisdictionCounty.options[23].text="Judith Basin County"
            obj.jurisdictionCounty.options[24].value="1621"
            obj.jurisdictionCounty.options[24].text="Lake County"
            obj.jurisdictionCounty.options[25].value="1622"
            obj.jurisdictionCounty.options[25].text="Lewis And Clark County"
            obj.jurisdictionCounty.options[26].value="1623"
            obj.jurisdictionCounty.options[26].text="Liberty County"
            obj.jurisdictionCounty.options[27].value="1624"
            obj.jurisdictionCounty.options[27].text="Lincoln County"
            obj.jurisdictionCounty.options[28].value="1625"
            obj.jurisdictionCounty.options[28].text="Madison County"
            obj.jurisdictionCounty.options[29].value="1626"
            obj.jurisdictionCounty.options[29].text="McCone County"
            obj.jurisdictionCounty.options[30].value="1627"
            obj.jurisdictionCounty.options[30].text="Meagher County"
            obj.jurisdictionCounty.options[31].value="1628"
            obj.jurisdictionCounty.options[31].text="Mineral County"
            obj.jurisdictionCounty.options[32].value="1629"
            obj.jurisdictionCounty.options[32].text="Missoula County"
            obj.jurisdictionCounty.options[33].value="1630"
            obj.jurisdictionCounty.options[33].text="Musselshell County"
            obj.jurisdictionCounty.options[34].value="1631"
            obj.jurisdictionCounty.options[34].text="Park County"
            obj.jurisdictionCounty.options[35].value="1632"
            obj.jurisdictionCounty.options[35].text="Petroleum County"
            obj.jurisdictionCounty.options[36].value="1633"
            obj.jurisdictionCounty.options[36].text="Phillips County"
            obj.jurisdictionCounty.options[37].value="1634"
            obj.jurisdictionCounty.options[37].text="Pondera County"
            obj.jurisdictionCounty.options[38].value="1635"
            obj.jurisdictionCounty.options[38].text="Powder River County"
            obj.jurisdictionCounty.options[39].value="1636"
            obj.jurisdictionCounty.options[39].text="Powell County"
            obj.jurisdictionCounty.options[40].value="1637"
            obj.jurisdictionCounty.options[40].text="Prairie County"
            obj.jurisdictionCounty.options[41].value="1638"
            obj.jurisdictionCounty.options[41].text="Ravalli County"
            obj.jurisdictionCounty.options[42].value="1639"
            obj.jurisdictionCounty.options[42].text="Richland County"
            obj.jurisdictionCounty.options[43].value="1640"
            obj.jurisdictionCounty.options[43].text="Roosevelt County"
            obj.jurisdictionCounty.options[44].value="1641"
            obj.jurisdictionCounty.options[44].text="Rosebud County"
            obj.jurisdictionCounty.options[45].value="1642"
            obj.jurisdictionCounty.options[45].text="Sanders County"
            obj.jurisdictionCounty.options[46].value="1643"
            obj.jurisdictionCounty.options[46].text="Sheridan County"
            obj.jurisdictionCounty.options[47].value="1644"
            obj.jurisdictionCounty.options[47].text="Silver Bow County"
            obj.jurisdictionCounty.options[48].value="1645"
            obj.jurisdictionCounty.options[48].text="Stillwater County"
            obj.jurisdictionCounty.options[49].value="1646"
            obj.jurisdictionCounty.options[49].text="Sweet Grass County"
            obj.jurisdictionCounty.options[50].value="1647"
            obj.jurisdictionCounty.options[50].text="Teton County"
            obj.jurisdictionCounty.options[51].value="1648"
            obj.jurisdictionCounty.options[51].text="Toole County"
            obj.jurisdictionCounty.options[52].value="1649"
            obj.jurisdictionCounty.options[52].text="Treasure County"
            obj.jurisdictionCounty.options[53].value="1650"
            obj.jurisdictionCounty.options[53].text="Valley County"
            obj.jurisdictionCounty.options[54].value="1651"
            obj.jurisdictionCounty.options[54].text="Wheatland County"
            obj.jurisdictionCounty.options[55].value="1652"
            obj.jurisdictionCounty.options[55].text="Wibaux County"
            obj.jurisdictionCounty.options[56].value="1653"
            obj.jurisdictionCounty.options[56].text="Yellowstone County" 
            break;

            
         
         	case 28:
			
             
            obj.jurisdictionCounty.length=94
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1807"
            obj.jurisdictionCounty.options[1].text="Adams County"
            obj.jurisdictionCounty.options[2].value="1808"
            obj.jurisdictionCounty.options[2].text="Antelope County"
            obj.jurisdictionCounty.options[3].value="1809"
            obj.jurisdictionCounty.options[3].text="Arthur County"
            obj.jurisdictionCounty.options[4].value="1810"
            obj.jurisdictionCounty.options[4].text="Banner County"
            obj.jurisdictionCounty.options[5].value="1811"
            obj.jurisdictionCounty.options[5].text="Blaine County"
            obj.jurisdictionCounty.options[6].value="1812"
            obj.jurisdictionCounty.options[6].text="Boone County"
            obj.jurisdictionCounty.options[7].value="1813"
            obj.jurisdictionCounty.options[7].text="Box Butte County"
            obj.jurisdictionCounty.options[8].value="1814"
            obj.jurisdictionCounty.options[8].text="Boyd County"
            obj.jurisdictionCounty.options[9].value="1815"
            obj.jurisdictionCounty.options[9].text="Brown County"
            obj.jurisdictionCounty.options[10].value="1816"
            obj.jurisdictionCounty.options[10].text="Buffalo County"
            obj.jurisdictionCounty.options[11].value="1817"
            obj.jurisdictionCounty.options[11].text="Burt County"
            obj.jurisdictionCounty.options[12].value="1818"
            obj.jurisdictionCounty.options[12].text="Butler County"
            obj.jurisdictionCounty.options[13].value="1819"
            obj.jurisdictionCounty.options[13].text="Cass County"
            obj.jurisdictionCounty.options[14].value="1820"
            obj.jurisdictionCounty.options[14].text="Cedar County"
            obj.jurisdictionCounty.options[15].value="1821"
            obj.jurisdictionCounty.options[15].text="Chase County"
            obj.jurisdictionCounty.options[16].value="1822"
            obj.jurisdictionCounty.options[16].text="Cherry County"
            obj.jurisdictionCounty.options[17].value="1823"
            obj.jurisdictionCounty.options[17].text="Cheyenne County"
            obj.jurisdictionCounty.options[18].value="1824"
            obj.jurisdictionCounty.options[18].text="Clay County"
            obj.jurisdictionCounty.options[19].value="1825"
            obj.jurisdictionCounty.options[19].text="Colfax County"
            obj.jurisdictionCounty.options[20].value="1826"
            obj.jurisdictionCounty.options[20].text="Cuming County"
            obj.jurisdictionCounty.options[21].value="1827"
            obj.jurisdictionCounty.options[21].text="Custer County"
            obj.jurisdictionCounty.options[22].value="1828"
            obj.jurisdictionCounty.options[22].text="Dakota County"
            obj.jurisdictionCounty.options[23].value="1829"
            obj.jurisdictionCounty.options[23].text="Dawes County"
            obj.jurisdictionCounty.options[24].value="1830"
            obj.jurisdictionCounty.options[24].text="Dawson County"
            obj.jurisdictionCounty.options[25].value="1831"
            obj.jurisdictionCounty.options[25].text="Deuel County"
            obj.jurisdictionCounty.options[26].value="1832"
            obj.jurisdictionCounty.options[26].text="Dixon County"
            obj.jurisdictionCounty.options[27].value="1833"
            obj.jurisdictionCounty.options[27].text="Dodge County"
            obj.jurisdictionCounty.options[28].value="1834"
            obj.jurisdictionCounty.options[28].text="Douglas County"
            obj.jurisdictionCounty.options[29].value="1835"
            obj.jurisdictionCounty.options[29].text="Dundy County"
            obj.jurisdictionCounty.options[30].value="1836"
            obj.jurisdictionCounty.options[30].text="Fillmore County"
            obj.jurisdictionCounty.options[31].value="1837"
            obj.jurisdictionCounty.options[31].text="Franklin County"
            obj.jurisdictionCounty.options[32].value="1838"
            obj.jurisdictionCounty.options[32].text="Frontier County"
            obj.jurisdictionCounty.options[33].value="1839"
            obj.jurisdictionCounty.options[33].text="Furnas County"
            obj.jurisdictionCounty.options[34].value="1840"
            obj.jurisdictionCounty.options[34].text="Gage County"
            obj.jurisdictionCounty.options[35].value="1841"
            obj.jurisdictionCounty.options[35].text="Garden County"
            obj.jurisdictionCounty.options[36].value="1842"
            obj.jurisdictionCounty.options[36].text="Garfield County"
            obj.jurisdictionCounty.options[37].value="1843"
            obj.jurisdictionCounty.options[37].text="Gosper County"
            obj.jurisdictionCounty.options[38].value="1844"
            obj.jurisdictionCounty.options[38].text="Grant County"
            obj.jurisdictionCounty.options[39].value="1845"
            obj.jurisdictionCounty.options[39].text="Greeley County"
            obj.jurisdictionCounty.options[40].value="1846"
            obj.jurisdictionCounty.options[40].text="Hall County"
            obj.jurisdictionCounty.options[41].value="1847"
            obj.jurisdictionCounty.options[41].text="Hamilton County"
            obj.jurisdictionCounty.options[42].value="1848"
            obj.jurisdictionCounty.options[42].text="Harlan County"
            obj.jurisdictionCounty.options[43].value="1849"
            obj.jurisdictionCounty.options[43].text="Hayes County"
            obj.jurisdictionCounty.options[44].value="1850"
            obj.jurisdictionCounty.options[44].text="Hitchcock County"
            obj.jurisdictionCounty.options[45].value="1851"
            obj.jurisdictionCounty.options[45].text="Holt County"
            obj.jurisdictionCounty.options[46].value="1852"
            obj.jurisdictionCounty.options[46].text="Hooker County"
            obj.jurisdictionCounty.options[47].value="1853"
            obj.jurisdictionCounty.options[47].text="Howard County"
            obj.jurisdictionCounty.options[48].value="1854"
            obj.jurisdictionCounty.options[48].text="Jefferson County"
            obj.jurisdictionCounty.options[49].value="1855"
            obj.jurisdictionCounty.options[49].text="Johnson County"
            obj.jurisdictionCounty.options[50].value="1856"
            obj.jurisdictionCounty.options[50].text="Kearney County"
            obj.jurisdictionCounty.options[51].value="1857"
            obj.jurisdictionCounty.options[51].text="Keith County"
            obj.jurisdictionCounty.options[52].value="1858"
            obj.jurisdictionCounty.options[52].text="Keya Paha County"
            obj.jurisdictionCounty.options[53].value="1859"
            obj.jurisdictionCounty.options[53].text="Kimball County"
            obj.jurisdictionCounty.options[54].value="1860"
            obj.jurisdictionCounty.options[54].text="Knox County"
            obj.jurisdictionCounty.options[55].value="1861"
            obj.jurisdictionCounty.options[55].text="Lancaster County"
            obj.jurisdictionCounty.options[56].value="1862"
            obj.jurisdictionCounty.options[56].text="Lincoln County"
            obj.jurisdictionCounty.options[57].value="1863"
            obj.jurisdictionCounty.options[57].text="Logan County"
            obj.jurisdictionCounty.options[58].value="1864"
            obj.jurisdictionCounty.options[58].text="Loup County"
            obj.jurisdictionCounty.options[59].value="1865"
            obj.jurisdictionCounty.options[59].text="Madison County"
            obj.jurisdictionCounty.options[60].value="1866"
            obj.jurisdictionCounty.options[60].text="McPherson County"
            obj.jurisdictionCounty.options[61].value="1867"
            obj.jurisdictionCounty.options[61].text="Merrick County"
            obj.jurisdictionCounty.options[62].value="1868"
            obj.jurisdictionCounty.options[62].text="Morrill County"
            obj.jurisdictionCounty.options[63].value="1869"
            obj.jurisdictionCounty.options[63].text="Nance County"
            obj.jurisdictionCounty.options[64].value="1870"
            obj.jurisdictionCounty.options[64].text="Nemaha County"
            obj.jurisdictionCounty.options[65].value="1871"
            obj.jurisdictionCounty.options[65].text="Nuckolls County"
            obj.jurisdictionCounty.options[66].value="1872"
            obj.jurisdictionCounty.options[66].text="Otoe County"
            obj.jurisdictionCounty.options[67].value="1873"
            obj.jurisdictionCounty.options[67].text="Pawnee County"
            obj.jurisdictionCounty.options[68].value="1874"
            obj.jurisdictionCounty.options[68].text="Perkins County"
            obj.jurisdictionCounty.options[69].value="1875"
            obj.jurisdictionCounty.options[69].text="Phelps County"
            obj.jurisdictionCounty.options[70].value="1876"
            obj.jurisdictionCounty.options[70].text="Pierce County"
            obj.jurisdictionCounty.options[71].value="1877"
            obj.jurisdictionCounty.options[71].text="Platte County"
            obj.jurisdictionCounty.options[72].value="1878"
            obj.jurisdictionCounty.options[72].text="Polk County"
            obj.jurisdictionCounty.options[73].value="1879"
            obj.jurisdictionCounty.options[73].text="Red Willow County"
            obj.jurisdictionCounty.options[74].value="1880"
            obj.jurisdictionCounty.options[74].text="Richardson County"
            obj.jurisdictionCounty.options[75].value="1881"
            obj.jurisdictionCounty.options[75].text="Rock County"
            obj.jurisdictionCounty.options[76].value="1882"
            obj.jurisdictionCounty.options[76].text="Saline County"
            obj.jurisdictionCounty.options[77].value="1883"
            obj.jurisdictionCounty.options[77].text="Sarpy County"
            obj.jurisdictionCounty.options[78].value="1884"
            obj.jurisdictionCounty.options[78].text="Saunders County"
            obj.jurisdictionCounty.options[79].value="1885"
            obj.jurisdictionCounty.options[79].text="Scotts Bluff County"
            obj.jurisdictionCounty.options[80].value="1886"
            obj.jurisdictionCounty.options[80].text="Seward County"
            obj.jurisdictionCounty.options[81].value="1887"
            obj.jurisdictionCounty.options[81].text="Sheridan County"
            obj.jurisdictionCounty.options[82].value="1888"
            obj.jurisdictionCounty.options[82].text="Sherman County"
            obj.jurisdictionCounty.options[83].value="1889"
            obj.jurisdictionCounty.options[83].text="Sioux County"
            obj.jurisdictionCounty.options[84].value="1890"
            obj.jurisdictionCounty.options[84].text="Stanton County"
            obj.jurisdictionCounty.options[85].value="1891"
            obj.jurisdictionCounty.options[85].text="Thayer County"
            obj.jurisdictionCounty.options[86].value="1892"
            obj.jurisdictionCounty.options[86].text="Thomas County"
            obj.jurisdictionCounty.options[87].value="1893"
            obj.jurisdictionCounty.options[87].text="Thurston County"
            obj.jurisdictionCounty.options[88].value="1894"
            obj.jurisdictionCounty.options[88].text="Valley County"
            obj.jurisdictionCounty.options[89].value="1895"
            obj.jurisdictionCounty.options[89].text="Washington County"
            obj.jurisdictionCounty.options[90].value="1896"
            obj.jurisdictionCounty.options[90].text="Wayne County"
            obj.jurisdictionCounty.options[91].value="1897"
            obj.jurisdictionCounty.options[91].text="Webster County"
            obj.jurisdictionCounty.options[92].value="1898"
            obj.jurisdictionCounty.options[92].text="Wheeler County"
            obj.jurisdictionCounty.options[93].value="1899"
            obj.jurisdictionCounty.options[93].text="York County" 
            break;

            
         
         	case 29:
			
             
            obj.jurisdictionCounty.length=18
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1964"
            obj.jurisdictionCounty.options[1].text="Carson City County"
            obj.jurisdictionCounty.options[2].value="1965"
            obj.jurisdictionCounty.options[2].text="Churchill County"
            obj.jurisdictionCounty.options[3].value="1966"
            obj.jurisdictionCounty.options[3].text="Clark County"
            obj.jurisdictionCounty.options[4].value="1967"
            obj.jurisdictionCounty.options[4].text="Douglas County"
            obj.jurisdictionCounty.options[5].value="1968"
            obj.jurisdictionCounty.options[5].text="Elko County"
            obj.jurisdictionCounty.options[6].value="1969"
            obj.jurisdictionCounty.options[6].text="Esmeralda County"
            obj.jurisdictionCounty.options[7].value="1970"
            obj.jurisdictionCounty.options[7].text="Eureka County"
            obj.jurisdictionCounty.options[8].value="1971"
            obj.jurisdictionCounty.options[8].text="Humboldt County"
            obj.jurisdictionCounty.options[9].value="1972"
            obj.jurisdictionCounty.options[9].text="Lander County"
            obj.jurisdictionCounty.options[10].value="1973"
            obj.jurisdictionCounty.options[10].text="Lincoln County"
            obj.jurisdictionCounty.options[11].value="1974"
            obj.jurisdictionCounty.options[11].text="Lyon County"
            obj.jurisdictionCounty.options[12].value="1975"
            obj.jurisdictionCounty.options[12].text="Mineral County"
            obj.jurisdictionCounty.options[13].value="1976"
            obj.jurisdictionCounty.options[13].text="Nye County"
            obj.jurisdictionCounty.options[14].value="1977"
            obj.jurisdictionCounty.options[14].text="Pershing County"
            obj.jurisdictionCounty.options[15].value="1978"
            obj.jurisdictionCounty.options[15].text="Storey County"
            obj.jurisdictionCounty.options[16].value="1979"
            obj.jurisdictionCounty.options[16].text="Washoe County"
            obj.jurisdictionCounty.options[17].value="1980"
            obj.jurisdictionCounty.options[17].text="White Pine County" 
            break;

            
         
         	case 30:
			
             
            obj.jurisdictionCounty.length=11
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1900"
            obj.jurisdictionCounty.options[1].text="Belknap County"
            obj.jurisdictionCounty.options[2].value="1901"
            obj.jurisdictionCounty.options[2].text="Carroll County"
            obj.jurisdictionCounty.options[3].value="1902"
            obj.jurisdictionCounty.options[3].text="Cheshire County"
            obj.jurisdictionCounty.options[4].value="1903"
            obj.jurisdictionCounty.options[4].text="Coos County"
            obj.jurisdictionCounty.options[5].value="1904"
            obj.jurisdictionCounty.options[5].text="Grafton County"
            obj.jurisdictionCounty.options[6].value="1905"
            obj.jurisdictionCounty.options[6].text="Hillsborough County"
            obj.jurisdictionCounty.options[7].value="1906"
            obj.jurisdictionCounty.options[7].text="Merrimack County"
            obj.jurisdictionCounty.options[8].value="1907"
            obj.jurisdictionCounty.options[8].text="Rockingham County"
            obj.jurisdictionCounty.options[9].value="1908"
            obj.jurisdictionCounty.options[9].text="Strafford County"
            obj.jurisdictionCounty.options[10].value="1909"
            obj.jurisdictionCounty.options[10].text="Sullivan County" 
            break;

            
         
         	case 31:
			
             
            obj.jurisdictionCounty.length=22
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1910"
            obj.jurisdictionCounty.options[1].text="Atlantic County"
            obj.jurisdictionCounty.options[2].value="1911"
            obj.jurisdictionCounty.options[2].text="Bergen County"
            obj.jurisdictionCounty.options[3].value="1912"
            obj.jurisdictionCounty.options[3].text="Burlington County"
            obj.jurisdictionCounty.options[4].value="1913"
            obj.jurisdictionCounty.options[4].text="Camden County"
            obj.jurisdictionCounty.options[5].value="1914"
            obj.jurisdictionCounty.options[5].text="Cape May County"
            obj.jurisdictionCounty.options[6].value="1915"
            obj.jurisdictionCounty.options[6].text="Cumberland County"
            obj.jurisdictionCounty.options[7].value="1916"
            obj.jurisdictionCounty.options[7].text="Essex County"
            obj.jurisdictionCounty.options[8].value="1917"
            obj.jurisdictionCounty.options[8].text="Gloucester County"
            obj.jurisdictionCounty.options[9].value="1918"
            obj.jurisdictionCounty.options[9].text="Hudson County"
            obj.jurisdictionCounty.options[10].value="1919"
            obj.jurisdictionCounty.options[10].text="Hunterdon County"
            obj.jurisdictionCounty.options[11].value="1920"
            obj.jurisdictionCounty.options[11].text="Mercer County"
            obj.jurisdictionCounty.options[12].value="1921"
            obj.jurisdictionCounty.options[12].text="Middlesex County"
            obj.jurisdictionCounty.options[13].value="1922"
            obj.jurisdictionCounty.options[13].text="Monmouth County"
            obj.jurisdictionCounty.options[14].value="1923"
            obj.jurisdictionCounty.options[14].text="Morris County"
            obj.jurisdictionCounty.options[15].value="1924"
            obj.jurisdictionCounty.options[15].text="Ocean County"
            obj.jurisdictionCounty.options[16].value="1925"
            obj.jurisdictionCounty.options[16].text="Passaic County"
            obj.jurisdictionCounty.options[17].value="1926"
            obj.jurisdictionCounty.options[17].text="Salem County"
            obj.jurisdictionCounty.options[18].value="1927"
            obj.jurisdictionCounty.options[18].text="Somerset County"
            obj.jurisdictionCounty.options[19].value="1928"
            obj.jurisdictionCounty.options[19].text="Sussex County"
            obj.jurisdictionCounty.options[20].value="1929"
            obj.jurisdictionCounty.options[20].text="Union County"
            obj.jurisdictionCounty.options[21].value="1930"
            obj.jurisdictionCounty.options[21].text="Warren County" 
            break;

            
         
         	case 32:
			
             
            obj.jurisdictionCounty.length=34
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1931"
            obj.jurisdictionCounty.options[1].text="Bernalillo County"
            obj.jurisdictionCounty.options[2].value="1932"
            obj.jurisdictionCounty.options[2].text="Catron County"
            obj.jurisdictionCounty.options[3].value="1933"
            obj.jurisdictionCounty.options[3].text="Chaves County"
            obj.jurisdictionCounty.options[4].value="1934"
            obj.jurisdictionCounty.options[4].text="Cibola County"
            obj.jurisdictionCounty.options[5].value="1935"
            obj.jurisdictionCounty.options[5].text="Colfax County"
            obj.jurisdictionCounty.options[6].value="1936"
            obj.jurisdictionCounty.options[6].text="Curry County"
            obj.jurisdictionCounty.options[7].value="1937"
            obj.jurisdictionCounty.options[7].text="Debaca County"
            obj.jurisdictionCounty.options[8].value="1938"
            obj.jurisdictionCounty.options[8].text="Dona Ana County"
            obj.jurisdictionCounty.options[9].value="1939"
            obj.jurisdictionCounty.options[9].text="Eddy County"
            obj.jurisdictionCounty.options[10].value="1940"
            obj.jurisdictionCounty.options[10].text="Grant County"
            obj.jurisdictionCounty.options[11].value="1941"
            obj.jurisdictionCounty.options[11].text="Guadalupe County"
            obj.jurisdictionCounty.options[12].value="1942"
            obj.jurisdictionCounty.options[12].text="Harding County"
            obj.jurisdictionCounty.options[13].value="1943"
            obj.jurisdictionCounty.options[13].text="Hidalgo County"
            obj.jurisdictionCounty.options[14].value="1944"
            obj.jurisdictionCounty.options[14].text="Lea County"
            obj.jurisdictionCounty.options[15].value="1945"
            obj.jurisdictionCounty.options[15].text="Lincoln County"
            obj.jurisdictionCounty.options[16].value="1946"
            obj.jurisdictionCounty.options[16].text="Los Alamos County"
            obj.jurisdictionCounty.options[17].value="1947"
            obj.jurisdictionCounty.options[17].text="Luna County"
            obj.jurisdictionCounty.options[18].value="1948"
            obj.jurisdictionCounty.options[18].text="McKinley County"
            obj.jurisdictionCounty.options[19].value="1949"
            obj.jurisdictionCounty.options[19].text="Mora County"
            obj.jurisdictionCounty.options[20].value="1950"
            obj.jurisdictionCounty.options[20].text="Otero County"
            obj.jurisdictionCounty.options[21].value="1951"
            obj.jurisdictionCounty.options[21].text="Quay County"
            obj.jurisdictionCounty.options[22].value="1952"
            obj.jurisdictionCounty.options[22].text="Rio Arriba County"
            obj.jurisdictionCounty.options[23].value="1953"
            obj.jurisdictionCounty.options[23].text="Roosevelt County"
            obj.jurisdictionCounty.options[24].value="1954"
            obj.jurisdictionCounty.options[24].text="San Juan County"
            obj.jurisdictionCounty.options[25].value="1955"
            obj.jurisdictionCounty.options[25].text="San Miguel County"
            obj.jurisdictionCounty.options[26].value="1956"
            obj.jurisdictionCounty.options[26].text="Sandoval County"
            obj.jurisdictionCounty.options[27].value="1957"
            obj.jurisdictionCounty.options[27].text="Santa Fe County"
            obj.jurisdictionCounty.options[28].value="1958"
            obj.jurisdictionCounty.options[28].text="Sierra County"
            obj.jurisdictionCounty.options[29].value="1959"
            obj.jurisdictionCounty.options[29].text="Socorro County"
            obj.jurisdictionCounty.options[30].value="1960"
            obj.jurisdictionCounty.options[30].text="Taos County"
            obj.jurisdictionCounty.options[31].value="1961"
            obj.jurisdictionCounty.options[31].text="Torrance County"
            obj.jurisdictionCounty.options[32].value="1962"
            obj.jurisdictionCounty.options[32].text="Union County"
            obj.jurisdictionCounty.options[33].value="1963"
            obj.jurisdictionCounty.options[33].text="Valencia County" 
            break;

            
         
         	case 33:
			
             
            obj.jurisdictionCounty.length=63
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1981"
            obj.jurisdictionCounty.options[1].text="Albany County"
            obj.jurisdictionCounty.options[2].value="1982"
            obj.jurisdictionCounty.options[2].text="Allegany County"
            obj.jurisdictionCounty.options[3].value="1983"
            obj.jurisdictionCounty.options[3].text="Bronx County"
            obj.jurisdictionCounty.options[4].value="1984"
            obj.jurisdictionCounty.options[4].text="Broome County"
            obj.jurisdictionCounty.options[5].value="1985"
            obj.jurisdictionCounty.options[5].text="Cattaraugus County"
            obj.jurisdictionCounty.options[6].value="1986"
            obj.jurisdictionCounty.options[6].text="Cayuga County"
            obj.jurisdictionCounty.options[7].value="1987"
            obj.jurisdictionCounty.options[7].text="Chautauqua County"
            obj.jurisdictionCounty.options[8].value="1988"
            obj.jurisdictionCounty.options[8].text="Chemung County"
            obj.jurisdictionCounty.options[9].value="1989"
            obj.jurisdictionCounty.options[9].text="Chenango County"
            obj.jurisdictionCounty.options[10].value="1990"
            obj.jurisdictionCounty.options[10].text="Clinton County"
            obj.jurisdictionCounty.options[11].value="1991"
            obj.jurisdictionCounty.options[11].text="Columbia County"
            obj.jurisdictionCounty.options[12].value="1992"
            obj.jurisdictionCounty.options[12].text="Cortland County"
            obj.jurisdictionCounty.options[13].value="1993"
            obj.jurisdictionCounty.options[13].text="Delaware County"
            obj.jurisdictionCounty.options[14].value="1994"
            obj.jurisdictionCounty.options[14].text="Dutchess County"
            obj.jurisdictionCounty.options[15].value="1995"
            obj.jurisdictionCounty.options[15].text="Erie County"
            obj.jurisdictionCounty.options[16].value="1996"
            obj.jurisdictionCounty.options[16].text="Essex County"
            obj.jurisdictionCounty.options[17].value="1997"
            obj.jurisdictionCounty.options[17].text="Franklin County"
            obj.jurisdictionCounty.options[18].value="1998"
            obj.jurisdictionCounty.options[18].text="Fulton County"
            obj.jurisdictionCounty.options[19].value="1999"
            obj.jurisdictionCounty.options[19].text="Genesee County"
            obj.jurisdictionCounty.options[20].value="2000"
            obj.jurisdictionCounty.options[20].text="Greene County"
            obj.jurisdictionCounty.options[21].value="2001"
            obj.jurisdictionCounty.options[21].text="Hamilton County"
            obj.jurisdictionCounty.options[22].value="2002"
            obj.jurisdictionCounty.options[22].text="Herkimer County"
            obj.jurisdictionCounty.options[23].value="2003"
            obj.jurisdictionCounty.options[23].text="Jefferson County"
            obj.jurisdictionCounty.options[24].value="2004"
            obj.jurisdictionCounty.options[24].text="Kings County"
            obj.jurisdictionCounty.options[25].value="2005"
            obj.jurisdictionCounty.options[25].text="Lewis County"
            obj.jurisdictionCounty.options[26].value="2006"
            obj.jurisdictionCounty.options[26].text="Livingston County"
            obj.jurisdictionCounty.options[27].value="2007"
            obj.jurisdictionCounty.options[27].text="Madison County"
            obj.jurisdictionCounty.options[28].value="2008"
            obj.jurisdictionCounty.options[28].text="Monroe County"
            obj.jurisdictionCounty.options[29].value="2009"
            obj.jurisdictionCounty.options[29].text="Montgomery County"
            obj.jurisdictionCounty.options[30].value="2010"
            obj.jurisdictionCounty.options[30].text="Nassau County"
            obj.jurisdictionCounty.options[31].value="2011"
            obj.jurisdictionCounty.options[31].text="New York County"
            obj.jurisdictionCounty.options[32].value="2012"
            obj.jurisdictionCounty.options[32].text="Niagara County"
            obj.jurisdictionCounty.options[33].value="2013"
            obj.jurisdictionCounty.options[33].text="Oneida County"
            obj.jurisdictionCounty.options[34].value="2014"
            obj.jurisdictionCounty.options[34].text="Onondaga County"
            obj.jurisdictionCounty.options[35].value="2015"
            obj.jurisdictionCounty.options[35].text="Ontario County"
            obj.jurisdictionCounty.options[36].value="2016"
            obj.jurisdictionCounty.options[36].text="Orange County"
            obj.jurisdictionCounty.options[37].value="2017"
            obj.jurisdictionCounty.options[37].text="Orleans County"
            obj.jurisdictionCounty.options[38].value="2018"
            obj.jurisdictionCounty.options[38].text="Oswego County"
            obj.jurisdictionCounty.options[39].value="2019"
            obj.jurisdictionCounty.options[39].text="Otsego County"
            obj.jurisdictionCounty.options[40].value="2020"
            obj.jurisdictionCounty.options[40].text="Putnam County"
            obj.jurisdictionCounty.options[41].value="2021"
            obj.jurisdictionCounty.options[41].text="Queens County"
            obj.jurisdictionCounty.options[42].value="2022"
            obj.jurisdictionCounty.options[42].text="Rensselaer County"
            obj.jurisdictionCounty.options[43].value="2023"
            obj.jurisdictionCounty.options[43].text="Richmond County"
            obj.jurisdictionCounty.options[44].value="2024"
            obj.jurisdictionCounty.options[44].text="Rockland County"
            obj.jurisdictionCounty.options[45].value="2025"
            obj.jurisdictionCounty.options[45].text="Saint Lawrence County"
            obj.jurisdictionCounty.options[46].value="2026"
            obj.jurisdictionCounty.options[46].text="Saratoga County"
            obj.jurisdictionCounty.options[47].value="2027"
            obj.jurisdictionCounty.options[47].text="Schenectady County"
            obj.jurisdictionCounty.options[48].value="2028"
            obj.jurisdictionCounty.options[48].text="Schoharie County"
            obj.jurisdictionCounty.options[49].value="2029"
            obj.jurisdictionCounty.options[49].text="Schuyler County"
            obj.jurisdictionCounty.options[50].value="2030"
            obj.jurisdictionCounty.options[50].text="Seneca County"
            obj.jurisdictionCounty.options[51].value="2032"
            obj.jurisdictionCounty.options[51].text="Steuben County"
            obj.jurisdictionCounty.options[52].value="2033"
            obj.jurisdictionCounty.options[52].text="Suffolk County"
            obj.jurisdictionCounty.options[53].value="2034"
            obj.jurisdictionCounty.options[53].text="Sullivan County"
            obj.jurisdictionCounty.options[54].value="2035"
            obj.jurisdictionCounty.options[54].text="Tioga County"
            obj.jurisdictionCounty.options[55].value="2036"
            obj.jurisdictionCounty.options[55].text="Tompkins County"
            obj.jurisdictionCounty.options[56].value="2037"
            obj.jurisdictionCounty.options[56].text="Ulster County"
            obj.jurisdictionCounty.options[57].value="2038"
            obj.jurisdictionCounty.options[57].text="Warren County"
            obj.jurisdictionCounty.options[58].value="2039"
            obj.jurisdictionCounty.options[58].text="Washington County"
            obj.jurisdictionCounty.options[59].value="2040"
            obj.jurisdictionCounty.options[59].text="Wayne County"
            obj.jurisdictionCounty.options[60].value="2041"
            obj.jurisdictionCounty.options[60].text="Westchester County"
            obj.jurisdictionCounty.options[61].value="2042"
            obj.jurisdictionCounty.options[61].text="Wyoming County"
            obj.jurisdictionCounty.options[62].value="2043"
            obj.jurisdictionCounty.options[62].text="Yates County" 
            break;

            
         
         	case 34:
			
             
            obj.jurisdictionCounty.length=101
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1654"
            obj.jurisdictionCounty.options[1].text="Alamance County"
            obj.jurisdictionCounty.options[2].value="1655"
            obj.jurisdictionCounty.options[2].text="Alexander County"
            obj.jurisdictionCounty.options[3].value="1656"
            obj.jurisdictionCounty.options[3].text="Alleghany County"
            obj.jurisdictionCounty.options[4].value="1657"
            obj.jurisdictionCounty.options[4].text="Anson County"
            obj.jurisdictionCounty.options[5].value="1658"
            obj.jurisdictionCounty.options[5].text="Ashe County"
            obj.jurisdictionCounty.options[6].value="1659"
            obj.jurisdictionCounty.options[6].text="Avery County"
            obj.jurisdictionCounty.options[7].value="1660"
            obj.jurisdictionCounty.options[7].text="Beaufort County"
            obj.jurisdictionCounty.options[8].value="1661"
            obj.jurisdictionCounty.options[8].text="Bertie County"
            obj.jurisdictionCounty.options[9].value="1662"
            obj.jurisdictionCounty.options[9].text="Bladen County"
            obj.jurisdictionCounty.options[10].value="1663"
            obj.jurisdictionCounty.options[10].text="Brunswick County"
            obj.jurisdictionCounty.options[11].value="1664"
            obj.jurisdictionCounty.options[11].text="Buncombe County"
            obj.jurisdictionCounty.options[12].value="1665"
            obj.jurisdictionCounty.options[12].text="Burke County"
            obj.jurisdictionCounty.options[13].value="1666"
            obj.jurisdictionCounty.options[13].text="Cabarrus County"
            obj.jurisdictionCounty.options[14].value="1667"
            obj.jurisdictionCounty.options[14].text="Caldwell County"
            obj.jurisdictionCounty.options[15].value="1668"
            obj.jurisdictionCounty.options[15].text="Camden County"
            obj.jurisdictionCounty.options[16].value="1669"
            obj.jurisdictionCounty.options[16].text="Carteret County"
            obj.jurisdictionCounty.options[17].value="1670"
            obj.jurisdictionCounty.options[17].text="Caswell County"
            obj.jurisdictionCounty.options[18].value="1671"
            obj.jurisdictionCounty.options[18].text="Catawba County"
            obj.jurisdictionCounty.options[19].value="1672"
            obj.jurisdictionCounty.options[19].text="Chatham County"
            obj.jurisdictionCounty.options[20].value="1673"
            obj.jurisdictionCounty.options[20].text="Cherokee County"
            obj.jurisdictionCounty.options[21].value="1674"
            obj.jurisdictionCounty.options[21].text="Chowan County"
            obj.jurisdictionCounty.options[22].value="1675"
            obj.jurisdictionCounty.options[22].text="Clay County"
            obj.jurisdictionCounty.options[23].value="1676"
            obj.jurisdictionCounty.options[23].text="Cleveland County"
            obj.jurisdictionCounty.options[24].value="1677"
            obj.jurisdictionCounty.options[24].text="Columbus County"
            obj.jurisdictionCounty.options[25].value="1678"
            obj.jurisdictionCounty.options[25].text="Craven County"
            obj.jurisdictionCounty.options[26].value="1679"
            obj.jurisdictionCounty.options[26].text="Cumberland County"
            obj.jurisdictionCounty.options[27].value="1680"
            obj.jurisdictionCounty.options[27].text="Currituck County"
            obj.jurisdictionCounty.options[28].value="1681"
            obj.jurisdictionCounty.options[28].text="Dare County"
            obj.jurisdictionCounty.options[29].value="1682"
            obj.jurisdictionCounty.options[29].text="Davidson County"
            obj.jurisdictionCounty.options[30].value="1683"
            obj.jurisdictionCounty.options[30].text="Davie County"
            obj.jurisdictionCounty.options[31].value="1684"
            obj.jurisdictionCounty.options[31].text="Duplin County"
            obj.jurisdictionCounty.options[32].value="1685"
            obj.jurisdictionCounty.options[32].text="Durham County"
            obj.jurisdictionCounty.options[33].value="1686"
            obj.jurisdictionCounty.options[33].text="Edgecombe County"
            obj.jurisdictionCounty.options[34].value="1687"
            obj.jurisdictionCounty.options[34].text="Forsyth County"
            obj.jurisdictionCounty.options[35].value="1688"
            obj.jurisdictionCounty.options[35].text="Franklin County"
            obj.jurisdictionCounty.options[36].value="1689"
            obj.jurisdictionCounty.options[36].text="Gaston County"
            obj.jurisdictionCounty.options[37].value="1690"
            obj.jurisdictionCounty.options[37].text="Gates County"
            obj.jurisdictionCounty.options[38].value="1691"
            obj.jurisdictionCounty.options[38].text="Graham County"
            obj.jurisdictionCounty.options[39].value="1692"
            obj.jurisdictionCounty.options[39].text="Granville County"
            obj.jurisdictionCounty.options[40].value="1693"
            obj.jurisdictionCounty.options[40].text="Greene County"
            obj.jurisdictionCounty.options[41].value="1694"
            obj.jurisdictionCounty.options[41].text="Guilford County"
            obj.jurisdictionCounty.options[42].value="1695"
            obj.jurisdictionCounty.options[42].text="Halifax County"
            obj.jurisdictionCounty.options[43].value="1696"
            obj.jurisdictionCounty.options[43].text="Harnett County"
            obj.jurisdictionCounty.options[44].value="1697"
            obj.jurisdictionCounty.options[44].text="Haywood County"
            obj.jurisdictionCounty.options[45].value="1698"
            obj.jurisdictionCounty.options[45].text="Henderson County"
            obj.jurisdictionCounty.options[46].value="1699"
            obj.jurisdictionCounty.options[46].text="Hertford County"
            obj.jurisdictionCounty.options[47].value="1700"
            obj.jurisdictionCounty.options[47].text="Hoke County"
            obj.jurisdictionCounty.options[48].value="1701"
            obj.jurisdictionCounty.options[48].text="Hyde County"
            obj.jurisdictionCounty.options[49].value="1702"
            obj.jurisdictionCounty.options[49].text="Iredell County"
            obj.jurisdictionCounty.options[50].value="1703"
            obj.jurisdictionCounty.options[50].text="Jackson County"
            obj.jurisdictionCounty.options[51].value="1704"
            obj.jurisdictionCounty.options[51].text="Johnston County"
            obj.jurisdictionCounty.options[52].value="1705"
            obj.jurisdictionCounty.options[52].text="Jones County"
            obj.jurisdictionCounty.options[53].value="1706"
            obj.jurisdictionCounty.options[53].text="Lee County"
            obj.jurisdictionCounty.options[54].value="1707"
            obj.jurisdictionCounty.options[54].text="Lenoir County"
            obj.jurisdictionCounty.options[55].value="1708"
            obj.jurisdictionCounty.options[55].text="Lincoln County"
            obj.jurisdictionCounty.options[56].value="1709"
            obj.jurisdictionCounty.options[56].text="Macon County"
            obj.jurisdictionCounty.options[57].value="1710"
            obj.jurisdictionCounty.options[57].text="Madison County"
            obj.jurisdictionCounty.options[58].value="1711"
            obj.jurisdictionCounty.options[58].text="Martin County"
            obj.jurisdictionCounty.options[59].value="1712"
            obj.jurisdictionCounty.options[59].text="McDowell County"
            obj.jurisdictionCounty.options[60].value="1713"
            obj.jurisdictionCounty.options[60].text="Mecklenburg County"
            obj.jurisdictionCounty.options[61].value="1714"
            obj.jurisdictionCounty.options[61].text="Mitchell County"
            obj.jurisdictionCounty.options[62].value="1715"
            obj.jurisdictionCounty.options[62].text="Montgomery County"
            obj.jurisdictionCounty.options[63].value="1716"
            obj.jurisdictionCounty.options[63].text="Moore County"
            obj.jurisdictionCounty.options[64].value="1717"
            obj.jurisdictionCounty.options[64].text="Nash County"
            obj.jurisdictionCounty.options[65].value="1718"
            obj.jurisdictionCounty.options[65].text="New Hanover County"
            obj.jurisdictionCounty.options[66].value="1719"
            obj.jurisdictionCounty.options[66].text="Northampton County"
            obj.jurisdictionCounty.options[67].value="1720"
            obj.jurisdictionCounty.options[67].text="Onslow County"
            obj.jurisdictionCounty.options[68].value="1721"
            obj.jurisdictionCounty.options[68].text="Orange County"
            obj.jurisdictionCounty.options[69].value="1722"
            obj.jurisdictionCounty.options[69].text="Pamlico County"
            obj.jurisdictionCounty.options[70].value="1723"
            obj.jurisdictionCounty.options[70].text="Pasquotank County"
            obj.jurisdictionCounty.options[71].value="1724"
            obj.jurisdictionCounty.options[71].text="Pender County"
            obj.jurisdictionCounty.options[72].value="1725"
            obj.jurisdictionCounty.options[72].text="Perquimans County"
            obj.jurisdictionCounty.options[73].value="1726"
            obj.jurisdictionCounty.options[73].text="Person County"
            obj.jurisdictionCounty.options[74].value="1727"
            obj.jurisdictionCounty.options[74].text="Pitt County"
            obj.jurisdictionCounty.options[75].value="1728"
            obj.jurisdictionCounty.options[75].text="Polk County"
            obj.jurisdictionCounty.options[76].value="1729"
            obj.jurisdictionCounty.options[76].text="Randolph County"
            obj.jurisdictionCounty.options[77].value="1730"
            obj.jurisdictionCounty.options[77].text="Richmond County"
            obj.jurisdictionCounty.options[78].value="1731"
            obj.jurisdictionCounty.options[78].text="Robeson County"
            obj.jurisdictionCounty.options[79].value="1732"
            obj.jurisdictionCounty.options[79].text="Rockingham County"
            obj.jurisdictionCounty.options[80].value="1733"
            obj.jurisdictionCounty.options[80].text="Rowan County"
            obj.jurisdictionCounty.options[81].value="1734"
            obj.jurisdictionCounty.options[81].text="Rutherford County"
            obj.jurisdictionCounty.options[82].value="1735"
            obj.jurisdictionCounty.options[82].text="Sampson County"
            obj.jurisdictionCounty.options[83].value="1736"
            obj.jurisdictionCounty.options[83].text="Scotland County"
            obj.jurisdictionCounty.options[84].value="1737"
            obj.jurisdictionCounty.options[84].text="Stanly County"
            obj.jurisdictionCounty.options[85].value="1738"
            obj.jurisdictionCounty.options[85].text="Stokes County"
            obj.jurisdictionCounty.options[86].value="1739"
            obj.jurisdictionCounty.options[86].text="Surry County"
            obj.jurisdictionCounty.options[87].value="1740"
            obj.jurisdictionCounty.options[87].text="Swain County"
            obj.jurisdictionCounty.options[88].value="1741"
            obj.jurisdictionCounty.options[88].text="Transylvania County"
            obj.jurisdictionCounty.options[89].value="1742"
            obj.jurisdictionCounty.options[89].text="Tyrrell County"
            obj.jurisdictionCounty.options[90].value="1743"
            obj.jurisdictionCounty.options[90].text="Union County"
            obj.jurisdictionCounty.options[91].value="1744"
            obj.jurisdictionCounty.options[91].text="Vance County"
            obj.jurisdictionCounty.options[92].value="1745"
            obj.jurisdictionCounty.options[92].text="Wake County"
            obj.jurisdictionCounty.options[93].value="1746"
            obj.jurisdictionCounty.options[93].text="Warren County"
            obj.jurisdictionCounty.options[94].value="1747"
            obj.jurisdictionCounty.options[94].text="Washington County"
            obj.jurisdictionCounty.options[95].value="1748"
            obj.jurisdictionCounty.options[95].text="Watauga County"
            obj.jurisdictionCounty.options[96].value="1749"
            obj.jurisdictionCounty.options[96].text="Wayne County"
            obj.jurisdictionCounty.options[97].value="1750"
            obj.jurisdictionCounty.options[97].text="Wilkes County"
            obj.jurisdictionCounty.options[98].value="1751"
            obj.jurisdictionCounty.options[98].text="Wilson County"
            obj.jurisdictionCounty.options[99].value="1752"
            obj.jurisdictionCounty.options[99].text="Yadkin County"
            obj.jurisdictionCounty.options[100].value="1753"
            obj.jurisdictionCounty.options[100].text="Yancey County" 
            break;

            
         
         	case 35:
			
             
            obj.jurisdictionCounty.length=54
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="1754"
            obj.jurisdictionCounty.options[1].text="Adams County"
            obj.jurisdictionCounty.options[2].value="1755"
            obj.jurisdictionCounty.options[2].text="Barnes County"
            obj.jurisdictionCounty.options[3].value="1756"
            obj.jurisdictionCounty.options[3].text="Benson County"
            obj.jurisdictionCounty.options[4].value="1757"
            obj.jurisdictionCounty.options[4].text="Billings County"
            obj.jurisdictionCounty.options[5].value="1758"
            obj.jurisdictionCounty.options[5].text="Bottineau County"
            obj.jurisdictionCounty.options[6].value="1759"
            obj.jurisdictionCounty.options[6].text="Bowman County"
            obj.jurisdictionCounty.options[7].value="1760"
            obj.jurisdictionCounty.options[7].text="Burke County"
            obj.jurisdictionCounty.options[8].value="1761"
            obj.jurisdictionCounty.options[8].text="Burleigh County"
            obj.jurisdictionCounty.options[9].value="1762"
            obj.jurisdictionCounty.options[9].text="Cass County"
            obj.jurisdictionCounty.options[10].value="1763"
            obj.jurisdictionCounty.options[10].text="Cavalier County"
            obj.jurisdictionCounty.options[11].value="1764"
            obj.jurisdictionCounty.options[11].text="Dickey County"
            obj.jurisdictionCounty.options[12].value="1765"
            obj.jurisdictionCounty.options[12].text="Divide County"
            obj.jurisdictionCounty.options[13].value="1766"
            obj.jurisdictionCounty.options[13].text="Dunn County"
            obj.jurisdictionCounty.options[14].value="1767"
            obj.jurisdictionCounty.options[14].text="Eddy County"
            obj.jurisdictionCounty.options[15].value="1768"
            obj.jurisdictionCounty.options[15].text="Emmons County"
            obj.jurisdictionCounty.options[16].value="1769"
            obj.jurisdictionCounty.options[16].text="Foster County"
            obj.jurisdictionCounty.options[17].value="1770"
            obj.jurisdictionCounty.options[17].text="Golden Valley County"
            obj.jurisdictionCounty.options[18].value="1771"
            obj.jurisdictionCounty.options[18].text="Grand Forks County"
            obj.jurisdictionCounty.options[19].value="1772"
            obj.jurisdictionCounty.options[19].text="Grant County"
            obj.jurisdictionCounty.options[20].value="1773"
            obj.jurisdictionCounty.options[20].text="Griggs County"
            obj.jurisdictionCounty.options[21].value="1774"
            obj.jurisdictionCounty.options[21].text="Hettinger County"
            obj.jurisdictionCounty.options[22].value="1775"
            obj.jurisdictionCounty.options[22].text="Kidder County"
            obj.jurisdictionCounty.options[23].value="1776"
            obj.jurisdictionCounty.options[23].text="LaMoure County"
            obj.jurisdictionCounty.options[24].value="1777"
            obj.jurisdictionCounty.options[24].text="Logan County"
            obj.jurisdictionCounty.options[25].value="1778"
            obj.jurisdictionCounty.options[25].text="McHenry County"
            obj.jurisdictionCounty.options[26].value="1779"
            obj.jurisdictionCounty.options[26].text="McIntosh County"
            obj.jurisdictionCounty.options[27].value="1780"
            obj.jurisdictionCounty.options[27].text="McKenzie County"
            obj.jurisdictionCounty.options[28].value="1781"
            obj.jurisdictionCounty.options[28].text="McLean County"
            obj.jurisdictionCounty.options[29].value="1782"
            obj.jurisdictionCounty.options[29].text="Mercer County"
            obj.jurisdictionCounty.options[30].value="1783"
            obj.jurisdictionCounty.options[30].text="Morton County"
            obj.jurisdictionCounty.options[31].value="1784"
            obj.jurisdictionCounty.options[31].text="Mountrail County"
            obj.jurisdictionCounty.options[32].value="1785"
            obj.jurisdictionCounty.options[32].text="Nelson County"
            obj.jurisdictionCounty.options[33].value="1786"
            obj.jurisdictionCounty.options[33].text="Oliver County"
            obj.jurisdictionCounty.options[34].value="1787"
            obj.jurisdictionCounty.options[34].text="Pembina County"
            obj.jurisdictionCounty.options[35].value="1788"
            obj.jurisdictionCounty.options[35].text="Pierce County"
            obj.jurisdictionCounty.options[36].value="1789"
            obj.jurisdictionCounty.options[36].text="Ramsey County"
            obj.jurisdictionCounty.options[37].value="1790"
            obj.jurisdictionCounty.options[37].text="Ransom County"
            obj.jurisdictionCounty.options[38].value="1791"
            obj.jurisdictionCounty.options[38].text="Renville County"
            obj.jurisdictionCounty.options[39].value="1792"
            obj.jurisdictionCounty.options[39].text="Richland County"
            obj.jurisdictionCounty.options[40].value="1793"
            obj.jurisdictionCounty.options[40].text="Rolette County"
            obj.jurisdictionCounty.options[41].value="1794"
            obj.jurisdictionCounty.options[41].text="Sargent County"
            obj.jurisdictionCounty.options[42].value="1795"
            obj.jurisdictionCounty.options[42].text="Sheridan County"
            obj.jurisdictionCounty.options[43].value="1796"
            obj.jurisdictionCounty.options[43].text="Sioux County"
            obj.jurisdictionCounty.options[44].value="1797"
            obj.jurisdictionCounty.options[44].text="Slope County"
            obj.jurisdictionCounty.options[45].value="1798"
            obj.jurisdictionCounty.options[45].text="Stark County"
            obj.jurisdictionCounty.options[46].value="1799"
            obj.jurisdictionCounty.options[46].text="Steele County"
            obj.jurisdictionCounty.options[47].value="1800"
            obj.jurisdictionCounty.options[47].text="Stutsman County"
            obj.jurisdictionCounty.options[48].value="1801"
            obj.jurisdictionCounty.options[48].text="Towner County"
            obj.jurisdictionCounty.options[49].value="1802"
            obj.jurisdictionCounty.options[49].text="Traill County"
            obj.jurisdictionCounty.options[50].value="1803"
            obj.jurisdictionCounty.options[50].text="Walsh County"
            obj.jurisdictionCounty.options[51].value="1804"
            obj.jurisdictionCounty.options[51].text="Ward County"
            obj.jurisdictionCounty.options[52].value="1805"
            obj.jurisdictionCounty.options[52].text="Wells County"
            obj.jurisdictionCounty.options[53].value="1806"
            obj.jurisdictionCounty.options[53].text="Williams County" 
            break;

            
         
         	case 36:
			
             
            obj.jurisdictionCounty.length=89
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2044"
            obj.jurisdictionCounty.options[1].text="Adams County"
            obj.jurisdictionCounty.options[2].value="2045"
            obj.jurisdictionCounty.options[2].text="Allen County"
            obj.jurisdictionCounty.options[3].value="2046"
            obj.jurisdictionCounty.options[3].text="Ashland County"
            obj.jurisdictionCounty.options[4].value="2047"
            obj.jurisdictionCounty.options[4].text="Ashtabula County"
            obj.jurisdictionCounty.options[5].value="2048"
            obj.jurisdictionCounty.options[5].text="Athens County"
            obj.jurisdictionCounty.options[6].value="2049"
            obj.jurisdictionCounty.options[6].text="Auglaize County"
            obj.jurisdictionCounty.options[7].value="2050"
            obj.jurisdictionCounty.options[7].text="Belmont County"
            obj.jurisdictionCounty.options[8].value="2051"
            obj.jurisdictionCounty.options[8].text="Brown County"
            obj.jurisdictionCounty.options[9].value="2052"
            obj.jurisdictionCounty.options[9].text="Butler County"
            obj.jurisdictionCounty.options[10].value="2053"
            obj.jurisdictionCounty.options[10].text="Carroll County"
            obj.jurisdictionCounty.options[11].value="2054"
            obj.jurisdictionCounty.options[11].text="Champaign County"
            obj.jurisdictionCounty.options[12].value="2055"
            obj.jurisdictionCounty.options[12].text="Clark County"
            obj.jurisdictionCounty.options[13].value="2056"
            obj.jurisdictionCounty.options[13].text="Clermont County"
            obj.jurisdictionCounty.options[14].value="2057"
            obj.jurisdictionCounty.options[14].text="Clinton County"
            obj.jurisdictionCounty.options[15].value="2058"
            obj.jurisdictionCounty.options[15].text="Columbiana County"
            obj.jurisdictionCounty.options[16].value="2059"
            obj.jurisdictionCounty.options[16].text="Coshocton County"
            obj.jurisdictionCounty.options[17].value="2060"
            obj.jurisdictionCounty.options[17].text="Crawford County"
            obj.jurisdictionCounty.options[18].value="2061"
            obj.jurisdictionCounty.options[18].text="Cuyahoga County"
            obj.jurisdictionCounty.options[19].value="2062"
            obj.jurisdictionCounty.options[19].text="Darke County"
            obj.jurisdictionCounty.options[20].value="2063"
            obj.jurisdictionCounty.options[20].text="Defiance County"
            obj.jurisdictionCounty.options[21].value="2064"
            obj.jurisdictionCounty.options[21].text="Delaware County"
            obj.jurisdictionCounty.options[22].value="2065"
            obj.jurisdictionCounty.options[22].text="Erie County"
            obj.jurisdictionCounty.options[23].value="2066"
            obj.jurisdictionCounty.options[23].text="Fairfield County"
            obj.jurisdictionCounty.options[24].value="2067"
            obj.jurisdictionCounty.options[24].text="Fayette County"
            obj.jurisdictionCounty.options[25].value="2068"
            obj.jurisdictionCounty.options[25].text="Franklin County"
            obj.jurisdictionCounty.options[26].value="2069"
            obj.jurisdictionCounty.options[26].text="Fulton County"
            obj.jurisdictionCounty.options[27].value="2070"
            obj.jurisdictionCounty.options[27].text="Gallia County"
            obj.jurisdictionCounty.options[28].value="2071"
            obj.jurisdictionCounty.options[28].text="Geauga County"
            obj.jurisdictionCounty.options[29].value="2072"
            obj.jurisdictionCounty.options[29].text="Greene County"
            obj.jurisdictionCounty.options[30].value="2073"
            obj.jurisdictionCounty.options[30].text="Guernsey County"
            obj.jurisdictionCounty.options[31].value="2074"
            obj.jurisdictionCounty.options[31].text="Hamilton County"
            obj.jurisdictionCounty.options[32].value="2075"
            obj.jurisdictionCounty.options[32].text="Hancock County"
            obj.jurisdictionCounty.options[33].value="2076"
            obj.jurisdictionCounty.options[33].text="Hardin County"
            obj.jurisdictionCounty.options[34].value="2077"
            obj.jurisdictionCounty.options[34].text="Harrison County"
            obj.jurisdictionCounty.options[35].value="2078"
            obj.jurisdictionCounty.options[35].text="Henry County"
            obj.jurisdictionCounty.options[36].value="2079"
            obj.jurisdictionCounty.options[36].text="Highland County"
            obj.jurisdictionCounty.options[37].value="2080"
            obj.jurisdictionCounty.options[37].text="Hocking County"
            obj.jurisdictionCounty.options[38].value="2081"
            obj.jurisdictionCounty.options[38].text="Holmes County"
            obj.jurisdictionCounty.options[39].value="2082"
            obj.jurisdictionCounty.options[39].text="Huron County"
            obj.jurisdictionCounty.options[40].value="2083"
            obj.jurisdictionCounty.options[40].text="Jackson County"
            obj.jurisdictionCounty.options[41].value="2084"
            obj.jurisdictionCounty.options[41].text="Jefferson County"
            obj.jurisdictionCounty.options[42].value="2085"
            obj.jurisdictionCounty.options[42].text="Knox County"
            obj.jurisdictionCounty.options[43].value="2086"
            obj.jurisdictionCounty.options[43].text="Lake County"
            obj.jurisdictionCounty.options[44].value="2087"
            obj.jurisdictionCounty.options[44].text="Lawrence County"
            obj.jurisdictionCounty.options[45].value="2088"
            obj.jurisdictionCounty.options[45].text="Licking County"
            obj.jurisdictionCounty.options[46].value="2089"
            obj.jurisdictionCounty.options[46].text="Logan County"
            obj.jurisdictionCounty.options[47].value="2090"
            obj.jurisdictionCounty.options[47].text="Lorain County"
            obj.jurisdictionCounty.options[48].value="2091"
            obj.jurisdictionCounty.options[48].text="Lucas County"
            obj.jurisdictionCounty.options[49].value="2092"
            obj.jurisdictionCounty.options[49].text="Madison County"
            obj.jurisdictionCounty.options[50].value="2093"
            obj.jurisdictionCounty.options[50].text="Mahoning County"
            obj.jurisdictionCounty.options[51].value="2094"
            obj.jurisdictionCounty.options[51].text="Marion County"
            obj.jurisdictionCounty.options[52].value="2095"
            obj.jurisdictionCounty.options[52].text="Medina County"
            obj.jurisdictionCounty.options[53].value="2096"
            obj.jurisdictionCounty.options[53].text="Meigs County"
            obj.jurisdictionCounty.options[54].value="2097"
            obj.jurisdictionCounty.options[54].text="Mercer County"
            obj.jurisdictionCounty.options[55].value="2098"
            obj.jurisdictionCounty.options[55].text="Miami County"
            obj.jurisdictionCounty.options[56].value="2099"
            obj.jurisdictionCounty.options[56].text="Monroe County"
            obj.jurisdictionCounty.options[57].value="2100"
            obj.jurisdictionCounty.options[57].text="Montgomery County"
            obj.jurisdictionCounty.options[58].value="2101"
            obj.jurisdictionCounty.options[58].text="Morgan County"
            obj.jurisdictionCounty.options[59].value="2102"
            obj.jurisdictionCounty.options[59].text="Morrow County"
            obj.jurisdictionCounty.options[60].value="2103"
            obj.jurisdictionCounty.options[60].text="Muskingum County"
            obj.jurisdictionCounty.options[61].value="2104"
            obj.jurisdictionCounty.options[61].text="Noble County"
            obj.jurisdictionCounty.options[62].value="2105"
            obj.jurisdictionCounty.options[62].text="Ottawa County"
            obj.jurisdictionCounty.options[63].value="2106"
            obj.jurisdictionCounty.options[63].text="Paulding County"
            obj.jurisdictionCounty.options[64].value="2107"
            obj.jurisdictionCounty.options[64].text="Perry County"
            obj.jurisdictionCounty.options[65].value="2108"
            obj.jurisdictionCounty.options[65].text="Pickaway County"
            obj.jurisdictionCounty.options[66].value="2109"
            obj.jurisdictionCounty.options[66].text="Pike County"
            obj.jurisdictionCounty.options[67].value="2110"
            obj.jurisdictionCounty.options[67].text="Portage County"
            obj.jurisdictionCounty.options[68].value="2111"
            obj.jurisdictionCounty.options[68].text="Preble County"
            obj.jurisdictionCounty.options[69].value="2112"
            obj.jurisdictionCounty.options[69].text="Putnam County"
            obj.jurisdictionCounty.options[70].value="2113"
            obj.jurisdictionCounty.options[70].text="Richland County"
            obj.jurisdictionCounty.options[71].value="2114"
            obj.jurisdictionCounty.options[71].text="Ross County"
            obj.jurisdictionCounty.options[72].value="2115"
            obj.jurisdictionCounty.options[72].text="Sandusky County"
            obj.jurisdictionCounty.options[73].value="2116"
            obj.jurisdictionCounty.options[73].text="Scioto County"
            obj.jurisdictionCounty.options[74].value="2117"
            obj.jurisdictionCounty.options[74].text="Seneca County"
            obj.jurisdictionCounty.options[75].value="2118"
            obj.jurisdictionCounty.options[75].text="Shelby County"
            obj.jurisdictionCounty.options[76].value="2119"
            obj.jurisdictionCounty.options[76].text="Stark County"
            obj.jurisdictionCounty.options[77].value="2120"
            obj.jurisdictionCounty.options[77].text="Summit County"
            obj.jurisdictionCounty.options[78].value="2121"
            obj.jurisdictionCounty.options[78].text="Trumbull County"
            obj.jurisdictionCounty.options[79].value="2122"
            obj.jurisdictionCounty.options[79].text="Tuscarawas County"
            obj.jurisdictionCounty.options[80].value="2123"
            obj.jurisdictionCounty.options[80].text="Union County"
            obj.jurisdictionCounty.options[81].value="2124"
            obj.jurisdictionCounty.options[81].text="Van Wert County"
            obj.jurisdictionCounty.options[82].value="2125"
            obj.jurisdictionCounty.options[82].text="Vinton County"
            obj.jurisdictionCounty.options[83].value="2126"
            obj.jurisdictionCounty.options[83].text="Warren County"
            obj.jurisdictionCounty.options[84].value="2127"
            obj.jurisdictionCounty.options[84].text="Washington County"
            obj.jurisdictionCounty.options[85].value="2128"
            obj.jurisdictionCounty.options[85].text="Wayne County"
            obj.jurisdictionCounty.options[86].value="2129"
            obj.jurisdictionCounty.options[86].text="Williams County"
            obj.jurisdictionCounty.options[87].value="2130"
            obj.jurisdictionCounty.options[87].text="Wood County"
            obj.jurisdictionCounty.options[88].value="2131"
            obj.jurisdictionCounty.options[88].text="Wyandot County" 
            break;

            
         
         	case 37:
			
             
            obj.jurisdictionCounty.length=78
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2132"
            obj.jurisdictionCounty.options[1].text="Adair County"
            obj.jurisdictionCounty.options[2].value="2133"
            obj.jurisdictionCounty.options[2].text="Alfalfa County"
            obj.jurisdictionCounty.options[3].value="2134"
            obj.jurisdictionCounty.options[3].text="Atoka County"
            obj.jurisdictionCounty.options[4].value="2135"
            obj.jurisdictionCounty.options[4].text="Beaver County"
            obj.jurisdictionCounty.options[5].value="2136"
            obj.jurisdictionCounty.options[5].text="Beckham County"
            obj.jurisdictionCounty.options[6].value="2137"
            obj.jurisdictionCounty.options[6].text="Blaine County"
            obj.jurisdictionCounty.options[7].value="2138"
            obj.jurisdictionCounty.options[7].text="Bryan County"
            obj.jurisdictionCounty.options[8].value="2139"
            obj.jurisdictionCounty.options[8].text="Caddo County"
            obj.jurisdictionCounty.options[9].value="2140"
            obj.jurisdictionCounty.options[9].text="Canadian County"
            obj.jurisdictionCounty.options[10].value="2141"
            obj.jurisdictionCounty.options[10].text="Carter County"
            obj.jurisdictionCounty.options[11].value="2142"
            obj.jurisdictionCounty.options[11].text="Cherokee County"
            obj.jurisdictionCounty.options[12].value="2143"
            obj.jurisdictionCounty.options[12].text="Choctaw County"
            obj.jurisdictionCounty.options[13].value="2144"
            obj.jurisdictionCounty.options[13].text="Cimarron County"
            obj.jurisdictionCounty.options[14].value="2145"
            obj.jurisdictionCounty.options[14].text="Cleveland County"
            obj.jurisdictionCounty.options[15].value="2146"
            obj.jurisdictionCounty.options[15].text="Coal County"
            obj.jurisdictionCounty.options[16].value="2147"
            obj.jurisdictionCounty.options[16].text="Comanche County"
            obj.jurisdictionCounty.options[17].value="2148"
            obj.jurisdictionCounty.options[17].text="Cotton County"
            obj.jurisdictionCounty.options[18].value="2149"
            obj.jurisdictionCounty.options[18].text="Craig County"
            obj.jurisdictionCounty.options[19].value="2150"
            obj.jurisdictionCounty.options[19].text="Creek County"
            obj.jurisdictionCounty.options[20].value="2151"
            obj.jurisdictionCounty.options[20].text="Custer County"
            obj.jurisdictionCounty.options[21].value="2152"
            obj.jurisdictionCounty.options[21].text="Delaware County"
            obj.jurisdictionCounty.options[22].value="2153"
            obj.jurisdictionCounty.options[22].text="Dewey County"
            obj.jurisdictionCounty.options[23].value="2154"
            obj.jurisdictionCounty.options[23].text="Ellis County"
            obj.jurisdictionCounty.options[24].value="2155"
            obj.jurisdictionCounty.options[24].text="Garfield County"
            obj.jurisdictionCounty.options[25].value="2156"
            obj.jurisdictionCounty.options[25].text="Garvin County"
            obj.jurisdictionCounty.options[26].value="2157"
            obj.jurisdictionCounty.options[26].text="Grady County"
            obj.jurisdictionCounty.options[27].value="2158"
            obj.jurisdictionCounty.options[27].text="Grant County"
            obj.jurisdictionCounty.options[28].value="2159"
            obj.jurisdictionCounty.options[28].text="Greer County"
            obj.jurisdictionCounty.options[29].value="2160"
            obj.jurisdictionCounty.options[29].text="Harmon County"
            obj.jurisdictionCounty.options[30].value="2161"
            obj.jurisdictionCounty.options[30].text="Harper County"
            obj.jurisdictionCounty.options[31].value="2162"
            obj.jurisdictionCounty.options[31].text="Haskell County"
            obj.jurisdictionCounty.options[32].value="2163"
            obj.jurisdictionCounty.options[32].text="Hughes County"
            obj.jurisdictionCounty.options[33].value="2164"
            obj.jurisdictionCounty.options[33].text="Jackson County"
            obj.jurisdictionCounty.options[34].value="2165"
            obj.jurisdictionCounty.options[34].text="Jefferson County"
            obj.jurisdictionCounty.options[35].value="2166"
            obj.jurisdictionCounty.options[35].text="Johnston County"
            obj.jurisdictionCounty.options[36].value="2167"
            obj.jurisdictionCounty.options[36].text="Kay County"
            obj.jurisdictionCounty.options[37].value="2168"
            obj.jurisdictionCounty.options[37].text="Kingfisher County"
            obj.jurisdictionCounty.options[38].value="2169"
            obj.jurisdictionCounty.options[38].text="Kiowa County"
            obj.jurisdictionCounty.options[39].value="2170"
            obj.jurisdictionCounty.options[39].text="Latimer County"
            obj.jurisdictionCounty.options[40].value="2171"
            obj.jurisdictionCounty.options[40].text="Le Flore County"
            obj.jurisdictionCounty.options[41].value="2172"
            obj.jurisdictionCounty.options[41].text="Lincoln County"
            obj.jurisdictionCounty.options[42].value="2173"
            obj.jurisdictionCounty.options[42].text="Logan County"
            obj.jurisdictionCounty.options[43].value="2174"
            obj.jurisdictionCounty.options[43].text="Love County"
            obj.jurisdictionCounty.options[44].value="2175"
            obj.jurisdictionCounty.options[44].text="Major County"
            obj.jurisdictionCounty.options[45].value="2176"
            obj.jurisdictionCounty.options[45].text="Marshall County"
            obj.jurisdictionCounty.options[46].value="2177"
            obj.jurisdictionCounty.options[46].text="Mayes County"
            obj.jurisdictionCounty.options[47].value="2178"
            obj.jurisdictionCounty.options[47].text="McClain County"
            obj.jurisdictionCounty.options[48].value="2179"
            obj.jurisdictionCounty.options[48].text="McCurtain County"
            obj.jurisdictionCounty.options[49].value="2180"
            obj.jurisdictionCounty.options[49].text="McIntosh County"
            obj.jurisdictionCounty.options[50].value="2181"
            obj.jurisdictionCounty.options[50].text="Murray County"
            obj.jurisdictionCounty.options[51].value="2182"
            obj.jurisdictionCounty.options[51].text="Muskogee County"
            obj.jurisdictionCounty.options[52].value="2183"
            obj.jurisdictionCounty.options[52].text="Noble County"
            obj.jurisdictionCounty.options[53].value="2184"
            obj.jurisdictionCounty.options[53].text="Nowata County"
            obj.jurisdictionCounty.options[54].value="2185"
            obj.jurisdictionCounty.options[54].text="Okfuskee County"
            obj.jurisdictionCounty.options[55].value="2186"
            obj.jurisdictionCounty.options[55].text="Oklahoma County"
            obj.jurisdictionCounty.options[56].value="2187"
            obj.jurisdictionCounty.options[56].text="Okmulgee County"
            obj.jurisdictionCounty.options[57].value="2188"
            obj.jurisdictionCounty.options[57].text="Osage County"
            obj.jurisdictionCounty.options[58].value="2189"
            obj.jurisdictionCounty.options[58].text="Ottawa County"
            obj.jurisdictionCounty.options[59].value="2190"
            obj.jurisdictionCounty.options[59].text="Pawnee County"
            obj.jurisdictionCounty.options[60].value="2191"
            obj.jurisdictionCounty.options[60].text="Payne County"
            obj.jurisdictionCounty.options[61].value="2192"
            obj.jurisdictionCounty.options[61].text="Pittsburgh County"
            obj.jurisdictionCounty.options[62].value="2193"
            obj.jurisdictionCounty.options[62].text="Pontotoc County"
            obj.jurisdictionCounty.options[63].value="2194"
            obj.jurisdictionCounty.options[63].text="Pottawatomie County"
            obj.jurisdictionCounty.options[64].value="2195"
            obj.jurisdictionCounty.options[64].text="Pushmataha County"
            obj.jurisdictionCounty.options[65].value="2196"
            obj.jurisdictionCounty.options[65].text="Roger Mills County"
            obj.jurisdictionCounty.options[66].value="2197"
            obj.jurisdictionCounty.options[66].text="Rogers County"
            obj.jurisdictionCounty.options[67].value="2198"
            obj.jurisdictionCounty.options[67].text="Seminole County"
            obj.jurisdictionCounty.options[68].value="2199"
            obj.jurisdictionCounty.options[68].text="Sequoyah County"
            obj.jurisdictionCounty.options[69].value="2200"
            obj.jurisdictionCounty.options[69].text="Stephens County"
            obj.jurisdictionCounty.options[70].value="2201"
            obj.jurisdictionCounty.options[70].text="Texas County"
            obj.jurisdictionCounty.options[71].value="2202"
            obj.jurisdictionCounty.options[71].text="Tillman County"
            obj.jurisdictionCounty.options[72].value="2203"
            obj.jurisdictionCounty.options[72].text="Tulsa County"
            obj.jurisdictionCounty.options[73].value="2204"
            obj.jurisdictionCounty.options[73].text="Wagoner County"
            obj.jurisdictionCounty.options[74].value="2205"
            obj.jurisdictionCounty.options[74].text="Washington County"
            obj.jurisdictionCounty.options[75].value="2206"
            obj.jurisdictionCounty.options[75].text="Washita County"
            obj.jurisdictionCounty.options[76].value="2207"
            obj.jurisdictionCounty.options[76].text="Woods County"
            obj.jurisdictionCounty.options[77].value="2208"
            obj.jurisdictionCounty.options[77].text="Woodward County" 
            break;

            
         
         	case 38:
			
             
            obj.jurisdictionCounty.length=37
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2209"
            obj.jurisdictionCounty.options[1].text="Baker County"
            obj.jurisdictionCounty.options[2].value="2210"
            obj.jurisdictionCounty.options[2].text="Benton County"
            obj.jurisdictionCounty.options[3].value="2211"
            obj.jurisdictionCounty.options[3].text="Clackamas County"
            obj.jurisdictionCounty.options[4].value="2212"
            obj.jurisdictionCounty.options[4].text="Clatsop County"
            obj.jurisdictionCounty.options[5].value="2213"
            obj.jurisdictionCounty.options[5].text="Columbia County"
            obj.jurisdictionCounty.options[6].value="2214"
            obj.jurisdictionCounty.options[6].text="Coos County"
            obj.jurisdictionCounty.options[7].value="2215"
            obj.jurisdictionCounty.options[7].text="Crook County"
            obj.jurisdictionCounty.options[8].value="2216"
            obj.jurisdictionCounty.options[8].text="Curry County"
            obj.jurisdictionCounty.options[9].value="2217"
            obj.jurisdictionCounty.options[9].text="Deschutes County"
            obj.jurisdictionCounty.options[10].value="2218"
            obj.jurisdictionCounty.options[10].text="Douglas County"
            obj.jurisdictionCounty.options[11].value="2219"
            obj.jurisdictionCounty.options[11].text="Gilliam County"
            obj.jurisdictionCounty.options[12].value="2220"
            obj.jurisdictionCounty.options[12].text="Grant County"
            obj.jurisdictionCounty.options[13].value="2221"
            obj.jurisdictionCounty.options[13].text="Harney County"
            obj.jurisdictionCounty.options[14].value="2222"
            obj.jurisdictionCounty.options[14].text="Hood River County"
            obj.jurisdictionCounty.options[15].value="2223"
            obj.jurisdictionCounty.options[15].text="Jackson County"
            obj.jurisdictionCounty.options[16].value="2224"
            obj.jurisdictionCounty.options[16].text="Jefferson County"
            obj.jurisdictionCounty.options[17].value="2225"
            obj.jurisdictionCounty.options[17].text="Josephine County"
            obj.jurisdictionCounty.options[18].value="2226"
            obj.jurisdictionCounty.options[18].text="Klamath County"
            obj.jurisdictionCounty.options[19].value="2227"
            obj.jurisdictionCounty.options[19].text="Lake County"
            obj.jurisdictionCounty.options[20].value="2228"
            obj.jurisdictionCounty.options[20].text="Lane County"
            obj.jurisdictionCounty.options[21].value="2229"
            obj.jurisdictionCounty.options[21].text="Lincoln County"
            obj.jurisdictionCounty.options[22].value="2230"
            obj.jurisdictionCounty.options[22].text="Linn County"
            obj.jurisdictionCounty.options[23].value="2231"
            obj.jurisdictionCounty.options[23].text="Malheur County"
            obj.jurisdictionCounty.options[24].value="2232"
            obj.jurisdictionCounty.options[24].text="Marion County"
            obj.jurisdictionCounty.options[25].value="2233"
            obj.jurisdictionCounty.options[25].text="Morrow County"
            obj.jurisdictionCounty.options[26].value="2234"
            obj.jurisdictionCounty.options[26].text="Multnomah County"
            obj.jurisdictionCounty.options[27].value="2235"
            obj.jurisdictionCounty.options[27].text="Polk County"
            obj.jurisdictionCounty.options[28].value="2236"
            obj.jurisdictionCounty.options[28].text="Sherman County"
            obj.jurisdictionCounty.options[29].value="2237"
            obj.jurisdictionCounty.options[29].text="Tillamook County"
            obj.jurisdictionCounty.options[30].value="2238"
            obj.jurisdictionCounty.options[30].text="Umatilla County"
            obj.jurisdictionCounty.options[31].value="2239"
            obj.jurisdictionCounty.options[31].text="Union County"
            obj.jurisdictionCounty.options[32].value="2240"
            obj.jurisdictionCounty.options[32].text="Wallowa County"
            obj.jurisdictionCounty.options[33].value="2241"
            obj.jurisdictionCounty.options[33].text="Wasco County"
            obj.jurisdictionCounty.options[34].value="2242"
            obj.jurisdictionCounty.options[34].text="Washington County"
            obj.jurisdictionCounty.options[35].value="2243"
            obj.jurisdictionCounty.options[35].text="Wheeler County"
            obj.jurisdictionCounty.options[36].value="2244"
            obj.jurisdictionCounty.options[36].text="Yamhill County" 
            break;

            
         
         	case 39:
			
             
            obj.jurisdictionCounty.length=68
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2245"
            obj.jurisdictionCounty.options[1].text="Adams County"
            obj.jurisdictionCounty.options[2].value="2246"
            obj.jurisdictionCounty.options[2].text="Allegheny County"
            obj.jurisdictionCounty.options[3].value="2247"
            obj.jurisdictionCounty.options[3].text="Armstrong County"
            obj.jurisdictionCounty.options[4].value="2248"
            obj.jurisdictionCounty.options[4].text="Beaver County"
            obj.jurisdictionCounty.options[5].value="2249"
            obj.jurisdictionCounty.options[5].text="Bedford County"
            obj.jurisdictionCounty.options[6].value="2250"
            obj.jurisdictionCounty.options[6].text="Berks County"
            obj.jurisdictionCounty.options[7].value="2251"
            obj.jurisdictionCounty.options[7].text="Blair County"
            obj.jurisdictionCounty.options[8].value="2252"
            obj.jurisdictionCounty.options[8].text="Bradford County"
            obj.jurisdictionCounty.options[9].value="2253"
            obj.jurisdictionCounty.options[9].text="Bucks County"
            obj.jurisdictionCounty.options[10].value="2254"
            obj.jurisdictionCounty.options[10].text="Butler County"
            obj.jurisdictionCounty.options[11].value="2255"
            obj.jurisdictionCounty.options[11].text="Cambria County"
            obj.jurisdictionCounty.options[12].value="2256"
            obj.jurisdictionCounty.options[12].text="Cameron County"
            obj.jurisdictionCounty.options[13].value="2257"
            obj.jurisdictionCounty.options[13].text="Carbon County"
            obj.jurisdictionCounty.options[14].value="2258"
            obj.jurisdictionCounty.options[14].text="Centre County"
            obj.jurisdictionCounty.options[15].value="2259"
            obj.jurisdictionCounty.options[15].text="Chester County"
            obj.jurisdictionCounty.options[16].value="2260"
            obj.jurisdictionCounty.options[16].text="Clarion County"
            obj.jurisdictionCounty.options[17].value="2261"
            obj.jurisdictionCounty.options[17].text="Clearfield County"
            obj.jurisdictionCounty.options[18].value="2262"
            obj.jurisdictionCounty.options[18].text="Clinton County"
            obj.jurisdictionCounty.options[19].value="2263"
            obj.jurisdictionCounty.options[19].text="Columbia County"
            obj.jurisdictionCounty.options[20].value="2264"
            obj.jurisdictionCounty.options[20].text="Crawford County"
            obj.jurisdictionCounty.options[21].value="2265"
            obj.jurisdictionCounty.options[21].text="Cumberland County"
            obj.jurisdictionCounty.options[22].value="2266"
            obj.jurisdictionCounty.options[22].text="Dauphin County"
            obj.jurisdictionCounty.options[23].value="2267"
            obj.jurisdictionCounty.options[23].text="Delaware County"
            obj.jurisdictionCounty.options[24].value="2268"
            obj.jurisdictionCounty.options[24].text="Elk County"
            obj.jurisdictionCounty.options[25].value="2269"
            obj.jurisdictionCounty.options[25].text="Erie County"
            obj.jurisdictionCounty.options[26].value="2270"
            obj.jurisdictionCounty.options[26].text="Fayette County"
            obj.jurisdictionCounty.options[27].value="2271"
            obj.jurisdictionCounty.options[27].text="Forest County"
            obj.jurisdictionCounty.options[28].value="2272"
            obj.jurisdictionCounty.options[28].text="Franklin County"
            obj.jurisdictionCounty.options[29].value="2273"
            obj.jurisdictionCounty.options[29].text="Fulton County"
            obj.jurisdictionCounty.options[30].value="2274"
            obj.jurisdictionCounty.options[30].text="Greene County"
            obj.jurisdictionCounty.options[31].value="2275"
            obj.jurisdictionCounty.options[31].text="Huntingdon County"
            obj.jurisdictionCounty.options[32].value="2276"
            obj.jurisdictionCounty.options[32].text="Indiana County"
            obj.jurisdictionCounty.options[33].value="2277"
            obj.jurisdictionCounty.options[33].text="Jefferson County"
            obj.jurisdictionCounty.options[34].value="2278"
            obj.jurisdictionCounty.options[34].text="Juniata County"
            obj.jurisdictionCounty.options[35].value="2279"
            obj.jurisdictionCounty.options[35].text="Lackawanna County"
            obj.jurisdictionCounty.options[36].value="2280"
            obj.jurisdictionCounty.options[36].text="Lancaster County"
            obj.jurisdictionCounty.options[37].value="2281"
            obj.jurisdictionCounty.options[37].text="Lawrence County"
            obj.jurisdictionCounty.options[38].value="2282"
            obj.jurisdictionCounty.options[38].text="Lebanon County"
            obj.jurisdictionCounty.options[39].value="2283"
            obj.jurisdictionCounty.options[39].text="Lehigh County"
            obj.jurisdictionCounty.options[40].value="2284"
            obj.jurisdictionCounty.options[40].text="Luzerne County"
            obj.jurisdictionCounty.options[41].value="2285"
            obj.jurisdictionCounty.options[41].text="Lycoming County"
            obj.jurisdictionCounty.options[42].value="2286"
            obj.jurisdictionCounty.options[42].text="Mc Kean County"
            obj.jurisdictionCounty.options[43].value="2287"
            obj.jurisdictionCounty.options[43].text="Mercer County"
            obj.jurisdictionCounty.options[44].value="2288"
            obj.jurisdictionCounty.options[44].text="Mifflin County"
            obj.jurisdictionCounty.options[45].value="2289"
            obj.jurisdictionCounty.options[45].text="Monroe County"
            obj.jurisdictionCounty.options[46].value="2290"
            obj.jurisdictionCounty.options[46].text="Montgomery County"
            obj.jurisdictionCounty.options[47].value="2291"
            obj.jurisdictionCounty.options[47].text="Montour County"
            obj.jurisdictionCounty.options[48].value="2292"
            obj.jurisdictionCounty.options[48].text="Northampton County"
            obj.jurisdictionCounty.options[49].value="2293"
            obj.jurisdictionCounty.options[49].text="Northumberland County"
            obj.jurisdictionCounty.options[50].value="2294"
            obj.jurisdictionCounty.options[50].text="Perry County"
            obj.jurisdictionCounty.options[51].value="2295"
            obj.jurisdictionCounty.options[51].text="Philadelphia County"
            obj.jurisdictionCounty.options[52].value="2296"
            obj.jurisdictionCounty.options[52].text="Pike County"
            obj.jurisdictionCounty.options[53].value="2297"
            obj.jurisdictionCounty.options[53].text="Potter County"
            obj.jurisdictionCounty.options[54].value="2298"
            obj.jurisdictionCounty.options[54].text="Schuylkill County"
            obj.jurisdictionCounty.options[55].value="2299"
            obj.jurisdictionCounty.options[55].text="Snyder County"
            obj.jurisdictionCounty.options[56].value="2300"
            obj.jurisdictionCounty.options[56].text="Somerset County"
            obj.jurisdictionCounty.options[57].value="2301"
            obj.jurisdictionCounty.options[57].text="Sullivan County"
            obj.jurisdictionCounty.options[58].value="2302"
            obj.jurisdictionCounty.options[58].text="Susquehanna County"
            obj.jurisdictionCounty.options[59].value="2303"
            obj.jurisdictionCounty.options[59].text="Tioga County"
            obj.jurisdictionCounty.options[60].value="2304"
            obj.jurisdictionCounty.options[60].text="Union County"
            obj.jurisdictionCounty.options[61].value="2305"
            obj.jurisdictionCounty.options[61].text="Venango County"
            obj.jurisdictionCounty.options[62].value="2306"
            obj.jurisdictionCounty.options[62].text="Warren County"
            obj.jurisdictionCounty.options[63].value="2307"
            obj.jurisdictionCounty.options[63].text="Washington County"
            obj.jurisdictionCounty.options[64].value="2308"
            obj.jurisdictionCounty.options[64].text="Wayne County"
            obj.jurisdictionCounty.options[65].value="2309"
            obj.jurisdictionCounty.options[65].text="Westmoreland County"
            obj.jurisdictionCounty.options[66].value="2310"
            obj.jurisdictionCounty.options[66].text="Wyoming County"
            obj.jurisdictionCounty.options[67].value="2311"
            obj.jurisdictionCounty.options[67].text="York County" 
            break;

            
         
         	case 40:
			
             
            obj.jurisdictionCounty.length=6
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2312"
            obj.jurisdictionCounty.options[1].text="Bristol County"
            obj.jurisdictionCounty.options[2].value="2313"
            obj.jurisdictionCounty.options[2].text="Kent County"
            obj.jurisdictionCounty.options[3].value="2314"
            obj.jurisdictionCounty.options[3].text="Newport County"
            obj.jurisdictionCounty.options[4].value="2315"
            obj.jurisdictionCounty.options[4].text="Providence County"
            obj.jurisdictionCounty.options[5].value="2316"
            obj.jurisdictionCounty.options[5].text="Washington County" 
            break;

            
         
         	case 41:
			
             
            obj.jurisdictionCounty.length=47
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2317"
            obj.jurisdictionCounty.options[1].text="Abbeville County"
            obj.jurisdictionCounty.options[2].value="2318"
            obj.jurisdictionCounty.options[2].text="Aiken County"
            obj.jurisdictionCounty.options[3].value="2319"
            obj.jurisdictionCounty.options[3].text="Allendale County"
            obj.jurisdictionCounty.options[4].value="2320"
            obj.jurisdictionCounty.options[4].text="Anderson County"
            obj.jurisdictionCounty.options[5].value="2321"
            obj.jurisdictionCounty.options[5].text="Bamberg County"
            obj.jurisdictionCounty.options[6].value="2322"
            obj.jurisdictionCounty.options[6].text="Barnwell County"
            obj.jurisdictionCounty.options[7].value="2323"
            obj.jurisdictionCounty.options[7].text="Beaufort County"
            obj.jurisdictionCounty.options[8].value="2324"
            obj.jurisdictionCounty.options[8].text="Berkeley County"
            obj.jurisdictionCounty.options[9].value="2325"
            obj.jurisdictionCounty.options[9].text="Calhoun County"
            obj.jurisdictionCounty.options[10].value="2326"
            obj.jurisdictionCounty.options[10].text="Charleston County"
            obj.jurisdictionCounty.options[11].value="2327"
            obj.jurisdictionCounty.options[11].text="Cherokee County"
            obj.jurisdictionCounty.options[12].value="2328"
            obj.jurisdictionCounty.options[12].text="Chester County"
            obj.jurisdictionCounty.options[13].value="2329"
            obj.jurisdictionCounty.options[13].text="Chesterfield County"
            obj.jurisdictionCounty.options[14].value="2330"
            obj.jurisdictionCounty.options[14].text="Clarendon County"
            obj.jurisdictionCounty.options[15].value="2331"
            obj.jurisdictionCounty.options[15].text="Colleton County"
            obj.jurisdictionCounty.options[16].value="2332"
            obj.jurisdictionCounty.options[16].text="Darlington County"
            obj.jurisdictionCounty.options[17].value="2333"
            obj.jurisdictionCounty.options[17].text="Dillon County"
            obj.jurisdictionCounty.options[18].value="2334"
            obj.jurisdictionCounty.options[18].text="Dorchester County"
            obj.jurisdictionCounty.options[19].value="2335"
            obj.jurisdictionCounty.options[19].text="Edgefield County"
            obj.jurisdictionCounty.options[20].value="2336"
            obj.jurisdictionCounty.options[20].text="Fairfield County"
            obj.jurisdictionCounty.options[21].value="2337"
            obj.jurisdictionCounty.options[21].text="Florence County"
            obj.jurisdictionCounty.options[22].value="2338"
            obj.jurisdictionCounty.options[22].text="Georgetown County"
            obj.jurisdictionCounty.options[23].value="2339"
            obj.jurisdictionCounty.options[23].text="Greenville County"
            obj.jurisdictionCounty.options[24].value="2340"
            obj.jurisdictionCounty.options[24].text="Greenwood County"
            obj.jurisdictionCounty.options[25].value="2341"
            obj.jurisdictionCounty.options[25].text="Hampton County"
            obj.jurisdictionCounty.options[26].value="2342"
            obj.jurisdictionCounty.options[26].text="Horry County"
            obj.jurisdictionCounty.options[27].value="2343"
            obj.jurisdictionCounty.options[27].text="Jasper County"
            obj.jurisdictionCounty.options[28].value="2344"
            obj.jurisdictionCounty.options[28].text="Kershaw County"
            obj.jurisdictionCounty.options[29].value="2345"
            obj.jurisdictionCounty.options[29].text="Lancaster County"
            obj.jurisdictionCounty.options[30].value="2346"
            obj.jurisdictionCounty.options[30].text="Laurens County"
            obj.jurisdictionCounty.options[31].value="2347"
            obj.jurisdictionCounty.options[31].text="Lee County"
            obj.jurisdictionCounty.options[32].value="2348"
            obj.jurisdictionCounty.options[32].text="Lexington County"
            obj.jurisdictionCounty.options[33].value="2349"
            obj.jurisdictionCounty.options[33].text="Marion County"
            obj.jurisdictionCounty.options[34].value="2350"
            obj.jurisdictionCounty.options[34].text="Marlboro County"
            obj.jurisdictionCounty.options[35].value="2351"
            obj.jurisdictionCounty.options[35].text="McCormick County"
            obj.jurisdictionCounty.options[36].value="2352"
            obj.jurisdictionCounty.options[36].text="Newberry County"
            obj.jurisdictionCounty.options[37].value="2353"
            obj.jurisdictionCounty.options[37].text="Oconee County"
            obj.jurisdictionCounty.options[38].value="2354"
            obj.jurisdictionCounty.options[38].text="Orangeburg County"
            obj.jurisdictionCounty.options[39].value="2355"
            obj.jurisdictionCounty.options[39].text="Pickens County"
            obj.jurisdictionCounty.options[40].value="2356"
            obj.jurisdictionCounty.options[40].text="Richland County"
            obj.jurisdictionCounty.options[41].value="2357"
            obj.jurisdictionCounty.options[41].text="Saluda County"
            obj.jurisdictionCounty.options[42].value="2358"
            obj.jurisdictionCounty.options[42].text="Spartanburg County"
            obj.jurisdictionCounty.options[43].value="2359"
            obj.jurisdictionCounty.options[43].text="Sumter County"
            obj.jurisdictionCounty.options[44].value="2360"
            obj.jurisdictionCounty.options[44].text="Union County"
            obj.jurisdictionCounty.options[45].value="2361"
            obj.jurisdictionCounty.options[45].text="Williamsburg County"
            obj.jurisdictionCounty.options[46].value="2362"
            obj.jurisdictionCounty.options[46].text="York County" 
            break;

            
         
         	case 42:
			
             
            obj.jurisdictionCounty.length=67
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2363"
            obj.jurisdictionCounty.options[1].text="Aurora County"
            obj.jurisdictionCounty.options[2].value="2364"
            obj.jurisdictionCounty.options[2].text="Beadle County"
            obj.jurisdictionCounty.options[3].value="2365"
            obj.jurisdictionCounty.options[3].text="Bennett County"
            obj.jurisdictionCounty.options[4].value="2366"
            obj.jurisdictionCounty.options[4].text="Bon Homme County"
            obj.jurisdictionCounty.options[5].value="2367"
            obj.jurisdictionCounty.options[5].text="Brookings County"
            obj.jurisdictionCounty.options[6].value="2368"
            obj.jurisdictionCounty.options[6].text="Brown County"
            obj.jurisdictionCounty.options[7].value="2369"
            obj.jurisdictionCounty.options[7].text="Brule County"
            obj.jurisdictionCounty.options[8].value="2370"
            obj.jurisdictionCounty.options[8].text="Buffalo County"
            obj.jurisdictionCounty.options[9].value="2371"
            obj.jurisdictionCounty.options[9].text="Butte County"
            obj.jurisdictionCounty.options[10].value="2372"
            obj.jurisdictionCounty.options[10].text="Campbell County"
            obj.jurisdictionCounty.options[11].value="2373"
            obj.jurisdictionCounty.options[11].text="Charles Mix County"
            obj.jurisdictionCounty.options[12].value="2374"
            obj.jurisdictionCounty.options[12].text="Clark County"
            obj.jurisdictionCounty.options[13].value="2375"
            obj.jurisdictionCounty.options[13].text="Clay County"
            obj.jurisdictionCounty.options[14].value="2376"
            obj.jurisdictionCounty.options[14].text="Codington County"
            obj.jurisdictionCounty.options[15].value="2377"
            obj.jurisdictionCounty.options[15].text="Corson County"
            obj.jurisdictionCounty.options[16].value="2378"
            obj.jurisdictionCounty.options[16].text="Custer County"
            obj.jurisdictionCounty.options[17].value="2379"
            obj.jurisdictionCounty.options[17].text="Davison County"
            obj.jurisdictionCounty.options[18].value="2380"
            obj.jurisdictionCounty.options[18].text="Day County"
            obj.jurisdictionCounty.options[19].value="2381"
            obj.jurisdictionCounty.options[19].text="Deuel County"
            obj.jurisdictionCounty.options[20].value="2382"
            obj.jurisdictionCounty.options[20].text="Dewey County"
            obj.jurisdictionCounty.options[21].value="2383"
            obj.jurisdictionCounty.options[21].text="Douglas County"
            obj.jurisdictionCounty.options[22].value="2384"
            obj.jurisdictionCounty.options[22].text="Edmunds County"
            obj.jurisdictionCounty.options[23].value="2385"
            obj.jurisdictionCounty.options[23].text="Fall River County"
            obj.jurisdictionCounty.options[24].value="2386"
            obj.jurisdictionCounty.options[24].text="Faulk County"
            obj.jurisdictionCounty.options[25].value="2387"
            obj.jurisdictionCounty.options[25].text="Grant County"
            obj.jurisdictionCounty.options[26].value="2388"
            obj.jurisdictionCounty.options[26].text="Gregory County"
            obj.jurisdictionCounty.options[27].value="2389"
            obj.jurisdictionCounty.options[27].text="Haakon County"
            obj.jurisdictionCounty.options[28].value="2390"
            obj.jurisdictionCounty.options[28].text="Hamlin County"
            obj.jurisdictionCounty.options[29].value="2391"
            obj.jurisdictionCounty.options[29].text="Hand County"
            obj.jurisdictionCounty.options[30].value="2392"
            obj.jurisdictionCounty.options[30].text="Hanson County"
            obj.jurisdictionCounty.options[31].value="2393"
            obj.jurisdictionCounty.options[31].text="Harding County"
            obj.jurisdictionCounty.options[32].value="2394"
            obj.jurisdictionCounty.options[32].text="Hughes County"
            obj.jurisdictionCounty.options[33].value="2395"
            obj.jurisdictionCounty.options[33].text="Hutchinson County"
            obj.jurisdictionCounty.options[34].value="2396"
            obj.jurisdictionCounty.options[34].text="Hyde County"
            obj.jurisdictionCounty.options[35].value="2397"
            obj.jurisdictionCounty.options[35].text="Jackson County"
            obj.jurisdictionCounty.options[36].value="2398"
            obj.jurisdictionCounty.options[36].text="Jerauld County"
            obj.jurisdictionCounty.options[37].value="2399"
            obj.jurisdictionCounty.options[37].text="Jones County"
            obj.jurisdictionCounty.options[38].value="2400"
            obj.jurisdictionCounty.options[38].text="Kingsbury County"
            obj.jurisdictionCounty.options[39].value="2401"
            obj.jurisdictionCounty.options[39].text="Lake County"
            obj.jurisdictionCounty.options[40].value="2402"
            obj.jurisdictionCounty.options[40].text="Lawrence County"
            obj.jurisdictionCounty.options[41].value="2403"
            obj.jurisdictionCounty.options[41].text="Lincoln County"
            obj.jurisdictionCounty.options[42].value="2404"
            obj.jurisdictionCounty.options[42].text="Lyman County"
            obj.jurisdictionCounty.options[43].value="2405"
            obj.jurisdictionCounty.options[43].text="Marshall County"
            obj.jurisdictionCounty.options[44].value="2406"
            obj.jurisdictionCounty.options[44].text="McCook County"
            obj.jurisdictionCounty.options[45].value="2407"
            obj.jurisdictionCounty.options[45].text="McPherson County"
            obj.jurisdictionCounty.options[46].value="2408"
            obj.jurisdictionCounty.options[46].text="Meade County"
            obj.jurisdictionCounty.options[47].value="2409"
            obj.jurisdictionCounty.options[47].text="Mellette County"
            obj.jurisdictionCounty.options[48].value="2410"
            obj.jurisdictionCounty.options[48].text="Miner County"
            obj.jurisdictionCounty.options[49].value="2411"
            obj.jurisdictionCounty.options[49].text="Minnehaha County"
            obj.jurisdictionCounty.options[50].value="2412"
            obj.jurisdictionCounty.options[50].text="Moody County"
            obj.jurisdictionCounty.options[51].value="2413"
            obj.jurisdictionCounty.options[51].text="Pennington County"
            obj.jurisdictionCounty.options[52].value="2414"
            obj.jurisdictionCounty.options[52].text="Perkins County"
            obj.jurisdictionCounty.options[53].value="2415"
            obj.jurisdictionCounty.options[53].text="Potter County"
            obj.jurisdictionCounty.options[54].value="2416"
            obj.jurisdictionCounty.options[54].text="Roberts County"
            obj.jurisdictionCounty.options[55].value="2417"
            obj.jurisdictionCounty.options[55].text="Sanborn County"
            obj.jurisdictionCounty.options[56].value="2418"
            obj.jurisdictionCounty.options[56].text="Shannon County"
            obj.jurisdictionCounty.options[57].value="2419"
            obj.jurisdictionCounty.options[57].text="Spink County"
            obj.jurisdictionCounty.options[58].value="2420"
            obj.jurisdictionCounty.options[58].text="Stanley County"
            obj.jurisdictionCounty.options[59].value="2421"
            obj.jurisdictionCounty.options[59].text="Sully County"
            obj.jurisdictionCounty.options[60].value="2422"
            obj.jurisdictionCounty.options[60].text="Todd County"
            obj.jurisdictionCounty.options[61].value="2423"
            obj.jurisdictionCounty.options[61].text="Tripp County"
            obj.jurisdictionCounty.options[62].value="2424"
            obj.jurisdictionCounty.options[62].text="Turner County"
            obj.jurisdictionCounty.options[63].value="2425"
            obj.jurisdictionCounty.options[63].text="Union County"
            obj.jurisdictionCounty.options[64].value="2426"
            obj.jurisdictionCounty.options[64].text="Walworth County"
            obj.jurisdictionCounty.options[65].value="2427"
            obj.jurisdictionCounty.options[65].text="Yankton County"
            obj.jurisdictionCounty.options[66].value="2428"
            obj.jurisdictionCounty.options[66].text="Ziebach County" 
            break;

            
         
         	case 43:
			
             
            obj.jurisdictionCounty.length=96
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2429"
            obj.jurisdictionCounty.options[1].text="Anderson County"
            obj.jurisdictionCounty.options[2].value="2430"
            obj.jurisdictionCounty.options[2].text="Bedford County"
            obj.jurisdictionCounty.options[3].value="2431"
            obj.jurisdictionCounty.options[3].text="Benton County"
            obj.jurisdictionCounty.options[4].value="2432"
            obj.jurisdictionCounty.options[4].text="Bledsoe County"
            obj.jurisdictionCounty.options[5].value="2433"
            obj.jurisdictionCounty.options[5].text="Blount County"
            obj.jurisdictionCounty.options[6].value="2434"
            obj.jurisdictionCounty.options[6].text="Bradley County"
            obj.jurisdictionCounty.options[7].value="2435"
            obj.jurisdictionCounty.options[7].text="Campbell County"
            obj.jurisdictionCounty.options[8].value="2436"
            obj.jurisdictionCounty.options[8].text="Cannon County"
            obj.jurisdictionCounty.options[9].value="2437"
            obj.jurisdictionCounty.options[9].text="Carroll County"
            obj.jurisdictionCounty.options[10].value="2438"
            obj.jurisdictionCounty.options[10].text="Carter County"
            obj.jurisdictionCounty.options[11].value="2439"
            obj.jurisdictionCounty.options[11].text="Cheatham County"
            obj.jurisdictionCounty.options[12].value="2440"
            obj.jurisdictionCounty.options[12].text="Chester County"
            obj.jurisdictionCounty.options[13].value="2441"
            obj.jurisdictionCounty.options[13].text="Claiborne County"
            obj.jurisdictionCounty.options[14].value="2442"
            obj.jurisdictionCounty.options[14].text="Clay County"
            obj.jurisdictionCounty.options[15].value="2443"
            obj.jurisdictionCounty.options[15].text="Cocke County"
            obj.jurisdictionCounty.options[16].value="2444"
            obj.jurisdictionCounty.options[16].text="Coffee County"
            obj.jurisdictionCounty.options[17].value="2445"
            obj.jurisdictionCounty.options[17].text="Crockett County"
            obj.jurisdictionCounty.options[18].value="2446"
            obj.jurisdictionCounty.options[18].text="Cumberland County"
            obj.jurisdictionCounty.options[19].value="2447"
            obj.jurisdictionCounty.options[19].text="Davidson County"
            obj.jurisdictionCounty.options[20].value="2449"
            obj.jurisdictionCounty.options[20].text="Decatur County"
            obj.jurisdictionCounty.options[21].value="2448"
            obj.jurisdictionCounty.options[21].text="DeKalb County"
            obj.jurisdictionCounty.options[22].value="2450"
            obj.jurisdictionCounty.options[22].text="Dickson County"
            obj.jurisdictionCounty.options[23].value="2451"
            obj.jurisdictionCounty.options[23].text="Dyer County"
            obj.jurisdictionCounty.options[24].value="2452"
            obj.jurisdictionCounty.options[24].text="Fayette County"
            obj.jurisdictionCounty.options[25].value="2453"
            obj.jurisdictionCounty.options[25].text="Fentress County"
            obj.jurisdictionCounty.options[26].value="2454"
            obj.jurisdictionCounty.options[26].text="Franklin County"
            obj.jurisdictionCounty.options[27].value="2455"
            obj.jurisdictionCounty.options[27].text="Gibson County"
            obj.jurisdictionCounty.options[28].value="2456"
            obj.jurisdictionCounty.options[28].text="Giles County"
            obj.jurisdictionCounty.options[29].value="2457"
            obj.jurisdictionCounty.options[29].text="Grainger County"
            obj.jurisdictionCounty.options[30].value="2458"
            obj.jurisdictionCounty.options[30].text="Greene County"
            obj.jurisdictionCounty.options[31].value="2459"
            obj.jurisdictionCounty.options[31].text="Grundy County"
            obj.jurisdictionCounty.options[32].value="2460"
            obj.jurisdictionCounty.options[32].text="Hamblen County"
            obj.jurisdictionCounty.options[33].value="2461"
            obj.jurisdictionCounty.options[33].text="Hamilton County"
            obj.jurisdictionCounty.options[34].value="2462"
            obj.jurisdictionCounty.options[34].text="Hancock County"
            obj.jurisdictionCounty.options[35].value="2463"
            obj.jurisdictionCounty.options[35].text="Hardeman County"
            obj.jurisdictionCounty.options[36].value="2464"
            obj.jurisdictionCounty.options[36].text="Hardin County"
            obj.jurisdictionCounty.options[37].value="2465"
            obj.jurisdictionCounty.options[37].text="Hawkins County"
            obj.jurisdictionCounty.options[38].value="2466"
            obj.jurisdictionCounty.options[38].text="Haywood County"
            obj.jurisdictionCounty.options[39].value="2467"
            obj.jurisdictionCounty.options[39].text="Henderson County"
            obj.jurisdictionCounty.options[40].value="2468"
            obj.jurisdictionCounty.options[40].text="Henry County"
            obj.jurisdictionCounty.options[41].value="2469"
            obj.jurisdictionCounty.options[41].text="Hickman County"
            obj.jurisdictionCounty.options[42].value="2470"
            obj.jurisdictionCounty.options[42].text="Houston County"
            obj.jurisdictionCounty.options[43].value="2471"
            obj.jurisdictionCounty.options[43].text="Humphreys County"
            obj.jurisdictionCounty.options[44].value="2472"
            obj.jurisdictionCounty.options[44].text="Jackson County"
            obj.jurisdictionCounty.options[45].value="2473"
            obj.jurisdictionCounty.options[45].text="Jefferson County"
            obj.jurisdictionCounty.options[46].value="2474"
            obj.jurisdictionCounty.options[46].text="Johnson County"
            obj.jurisdictionCounty.options[47].value="2475"
            obj.jurisdictionCounty.options[47].text="Knox County"
            obj.jurisdictionCounty.options[48].value="2476"
            obj.jurisdictionCounty.options[48].text="Lake County"
            obj.jurisdictionCounty.options[49].value="2477"
            obj.jurisdictionCounty.options[49].text="Lauderdale County"
            obj.jurisdictionCounty.options[50].value="2478"
            obj.jurisdictionCounty.options[50].text="Lawrence County"
            obj.jurisdictionCounty.options[51].value="2479"
            obj.jurisdictionCounty.options[51].text="Lewis County"
            obj.jurisdictionCounty.options[52].value="2480"
            obj.jurisdictionCounty.options[52].text="Lincoln County"
            obj.jurisdictionCounty.options[53].value="2481"
            obj.jurisdictionCounty.options[53].text="Loudon County"
            obj.jurisdictionCounty.options[54].value="2482"
            obj.jurisdictionCounty.options[54].text="Macon County"
            obj.jurisdictionCounty.options[55].value="2483"
            obj.jurisdictionCounty.options[55].text="Madison County"
            obj.jurisdictionCounty.options[56].value="2484"
            obj.jurisdictionCounty.options[56].text="Marion County"
            obj.jurisdictionCounty.options[57].value="2485"
            obj.jurisdictionCounty.options[57].text="Marshall County"
            obj.jurisdictionCounty.options[58].value="2486"
            obj.jurisdictionCounty.options[58].text="Maury County"
            obj.jurisdictionCounty.options[59].value="2487"
            obj.jurisdictionCounty.options[59].text="McMinn County"
            obj.jurisdictionCounty.options[60].value="2488"
            obj.jurisdictionCounty.options[60].text="McNairy County"
            obj.jurisdictionCounty.options[61].value="2489"
            obj.jurisdictionCounty.options[61].text="Meigs County"
            obj.jurisdictionCounty.options[62].value="2490"
            obj.jurisdictionCounty.options[62].text="Monroe County"
            obj.jurisdictionCounty.options[63].value="2491"
            obj.jurisdictionCounty.options[63].text="Montgomery County"
            obj.jurisdictionCounty.options[64].value="2492"
            obj.jurisdictionCounty.options[64].text="Moore County"
            obj.jurisdictionCounty.options[65].value="2493"
            obj.jurisdictionCounty.options[65].text="Morgan County"
            obj.jurisdictionCounty.options[66].value="2494"
            obj.jurisdictionCounty.options[66].text="Obion County"
            obj.jurisdictionCounty.options[67].value="2495"
            obj.jurisdictionCounty.options[67].text="Overton County"
            obj.jurisdictionCounty.options[68].value="2496"
            obj.jurisdictionCounty.options[68].text="Perry County"
            obj.jurisdictionCounty.options[69].value="2497"
            obj.jurisdictionCounty.options[69].text="Pickett County"
            obj.jurisdictionCounty.options[70].value="2498"
            obj.jurisdictionCounty.options[70].text="Polk County"
            obj.jurisdictionCounty.options[71].value="2499"
            obj.jurisdictionCounty.options[71].text="Putnam County"
            obj.jurisdictionCounty.options[72].value="2500"
            obj.jurisdictionCounty.options[72].text="Rhea County"
            obj.jurisdictionCounty.options[73].value="2501"
            obj.jurisdictionCounty.options[73].text="Roane County"
            obj.jurisdictionCounty.options[74].value="2502"
            obj.jurisdictionCounty.options[74].text="Robertson County"
            obj.jurisdictionCounty.options[75].value="2503"
            obj.jurisdictionCounty.options[75].text="Rutherford County"
            obj.jurisdictionCounty.options[76].value="2504"
            obj.jurisdictionCounty.options[76].text="Scott County"
            obj.jurisdictionCounty.options[77].value="2505"
            obj.jurisdictionCounty.options[77].text="Sequatchie County"
            obj.jurisdictionCounty.options[78].value="2506"
            obj.jurisdictionCounty.options[78].text="Sevier County"
            obj.jurisdictionCounty.options[79].value="2507"
            obj.jurisdictionCounty.options[79].text="Shelby County"
            obj.jurisdictionCounty.options[80].value="2508"
            obj.jurisdictionCounty.options[80].text="Smith County"
            obj.jurisdictionCounty.options[81].value="2509"
            obj.jurisdictionCounty.options[81].text="Stewart County"
            obj.jurisdictionCounty.options[82].value="2510"
            obj.jurisdictionCounty.options[82].text="Sullivan County"
            obj.jurisdictionCounty.options[83].value="2511"
            obj.jurisdictionCounty.options[83].text="Sumner County"
            obj.jurisdictionCounty.options[84].value="2512"
            obj.jurisdictionCounty.options[84].text="Tipton County"
            obj.jurisdictionCounty.options[85].value="2513"
            obj.jurisdictionCounty.options[85].text="Trousdale County"
            obj.jurisdictionCounty.options[86].value="2514"
            obj.jurisdictionCounty.options[86].text="Unicoi County"
            obj.jurisdictionCounty.options[87].value="2515"
            obj.jurisdictionCounty.options[87].text="Union County"
            obj.jurisdictionCounty.options[88].value="2516"
            obj.jurisdictionCounty.options[88].text="Van Buren County"
            obj.jurisdictionCounty.options[89].value="2517"
            obj.jurisdictionCounty.options[89].text="Warren County"
            obj.jurisdictionCounty.options[90].value="2518"
            obj.jurisdictionCounty.options[90].text="Washington County"
            obj.jurisdictionCounty.options[91].value="2519"
            obj.jurisdictionCounty.options[91].text="Wayne County"
            obj.jurisdictionCounty.options[92].value="2520"
            obj.jurisdictionCounty.options[92].text="Weakley County"
            obj.jurisdictionCounty.options[93].value="2521"
            obj.jurisdictionCounty.options[93].text="White County"
            obj.jurisdictionCounty.options[94].value="2522"
            obj.jurisdictionCounty.options[94].text="Williamson County"
            obj.jurisdictionCounty.options[95].value="2523"
            obj.jurisdictionCounty.options[95].text="Wilson County" 
            break;

            
         
         	case 44:
			
             
            obj.jurisdictionCounty.length=255
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2524"
            obj.jurisdictionCounty.options[1].text="Anderson County"
            obj.jurisdictionCounty.options[2].value="2525"
            obj.jurisdictionCounty.options[2].text="Andrews County"
            obj.jurisdictionCounty.options[3].value="2526"
            obj.jurisdictionCounty.options[3].text="Angelina County"
            obj.jurisdictionCounty.options[4].value="2527"
            obj.jurisdictionCounty.options[4].text="Aransas County"
            obj.jurisdictionCounty.options[5].value="2528"
            obj.jurisdictionCounty.options[5].text="Archer County"
            obj.jurisdictionCounty.options[6].value="2529"
            obj.jurisdictionCounty.options[6].text="Armstrong County"
            obj.jurisdictionCounty.options[7].value="2530"
            obj.jurisdictionCounty.options[7].text="Atascosa County"
            obj.jurisdictionCounty.options[8].value="2531"
            obj.jurisdictionCounty.options[8].text="Austin County"
            obj.jurisdictionCounty.options[9].value="2532"
            obj.jurisdictionCounty.options[9].text="Bailey County"
            obj.jurisdictionCounty.options[10].value="2533"
            obj.jurisdictionCounty.options[10].text="Bandera County"
            obj.jurisdictionCounty.options[11].value="2534"
            obj.jurisdictionCounty.options[11].text="Bastrop County"
            obj.jurisdictionCounty.options[12].value="2535"
            obj.jurisdictionCounty.options[12].text="Baylor County"
            obj.jurisdictionCounty.options[13].value="2536"
            obj.jurisdictionCounty.options[13].text="Bee County"
            obj.jurisdictionCounty.options[14].value="2537"
            obj.jurisdictionCounty.options[14].text="Bell County"
            obj.jurisdictionCounty.options[15].value="2538"
            obj.jurisdictionCounty.options[15].text="Bexar County"
            obj.jurisdictionCounty.options[16].value="2539"
            obj.jurisdictionCounty.options[16].text="Blanco County"
            obj.jurisdictionCounty.options[17].value="2540"
            obj.jurisdictionCounty.options[17].text="Borden County"
            obj.jurisdictionCounty.options[18].value="2541"
            obj.jurisdictionCounty.options[18].text="Bosque County"
            obj.jurisdictionCounty.options[19].value="2542"
            obj.jurisdictionCounty.options[19].text="Bowie County"
            obj.jurisdictionCounty.options[20].value="2543"
            obj.jurisdictionCounty.options[20].text="Brazoria County"
            obj.jurisdictionCounty.options[21].value="2544"
            obj.jurisdictionCounty.options[21].text="Brazos County"
            obj.jurisdictionCounty.options[22].value="2545"
            obj.jurisdictionCounty.options[22].text="Brewster County"
            obj.jurisdictionCounty.options[23].value="2546"
            obj.jurisdictionCounty.options[23].text="Briscoe County"
            obj.jurisdictionCounty.options[24].value="2547"
            obj.jurisdictionCounty.options[24].text="Brooks County"
            obj.jurisdictionCounty.options[25].value="2548"
            obj.jurisdictionCounty.options[25].text="Brown County"
            obj.jurisdictionCounty.options[26].value="2549"
            obj.jurisdictionCounty.options[26].text="Burleson County"
            obj.jurisdictionCounty.options[27].value="2550"
            obj.jurisdictionCounty.options[27].text="Burnet County"
            obj.jurisdictionCounty.options[28].value="2551"
            obj.jurisdictionCounty.options[28].text="Caldwell County"
            obj.jurisdictionCounty.options[29].value="2552"
            obj.jurisdictionCounty.options[29].text="Calhoun County"
            obj.jurisdictionCounty.options[30].value="2553"
            obj.jurisdictionCounty.options[30].text="Callahan County"
            obj.jurisdictionCounty.options[31].value="2554"
            obj.jurisdictionCounty.options[31].text="Cameron County"
            obj.jurisdictionCounty.options[32].value="2555"
            obj.jurisdictionCounty.options[32].text="Camp County"
            obj.jurisdictionCounty.options[33].value="2556"
            obj.jurisdictionCounty.options[33].text="Carson County"
            obj.jurisdictionCounty.options[34].value="2557"
            obj.jurisdictionCounty.options[34].text="Cass County"
            obj.jurisdictionCounty.options[35].value="2558"
            obj.jurisdictionCounty.options[35].text="Castro County"
            obj.jurisdictionCounty.options[36].value="2559"
            obj.jurisdictionCounty.options[36].text="Chambers County"
            obj.jurisdictionCounty.options[37].value="2560"
            obj.jurisdictionCounty.options[37].text="Cherokee County"
            obj.jurisdictionCounty.options[38].value="2561"
            obj.jurisdictionCounty.options[38].text="Childress County"
            obj.jurisdictionCounty.options[39].value="2562"
            obj.jurisdictionCounty.options[39].text="Clay County"
            obj.jurisdictionCounty.options[40].value="2563"
            obj.jurisdictionCounty.options[40].text="Cochran County"
            obj.jurisdictionCounty.options[41].value="2564"
            obj.jurisdictionCounty.options[41].text="Coke County"
            obj.jurisdictionCounty.options[42].value="2565"
            obj.jurisdictionCounty.options[42].text="Coleman County"
            obj.jurisdictionCounty.options[43].value="2566"
            obj.jurisdictionCounty.options[43].text="Collin County"
            obj.jurisdictionCounty.options[44].value="2567"
            obj.jurisdictionCounty.options[44].text="Collingsworth County"
            obj.jurisdictionCounty.options[45].value="2568"
            obj.jurisdictionCounty.options[45].text="Colorado County"
            obj.jurisdictionCounty.options[46].value="2569"
            obj.jurisdictionCounty.options[46].text="Comal County"
            obj.jurisdictionCounty.options[47].value="2570"
            obj.jurisdictionCounty.options[47].text="Comanche County"
            obj.jurisdictionCounty.options[48].value="2571"
            obj.jurisdictionCounty.options[48].text="Concho County"
            obj.jurisdictionCounty.options[49].value="2572"
            obj.jurisdictionCounty.options[49].text="Cooke County"
            obj.jurisdictionCounty.options[50].value="2573"
            obj.jurisdictionCounty.options[50].text="Coryell County"
            obj.jurisdictionCounty.options[51].value="2574"
            obj.jurisdictionCounty.options[51].text="Cottle County"
            obj.jurisdictionCounty.options[52].value="2575"
            obj.jurisdictionCounty.options[52].text="Crane County"
            obj.jurisdictionCounty.options[53].value="2576"
            obj.jurisdictionCounty.options[53].text="Crockett County"
            obj.jurisdictionCounty.options[54].value="2577"
            obj.jurisdictionCounty.options[54].text="Crosby County"
            obj.jurisdictionCounty.options[55].value="3180"
            obj.jurisdictionCounty.options[55].text="Culberson County"
            obj.jurisdictionCounty.options[56].value="2578"
            obj.jurisdictionCounty.options[56].text="Dallam County"
            obj.jurisdictionCounty.options[57].value="2579"
            obj.jurisdictionCounty.options[57].text="Dallas County"
            obj.jurisdictionCounty.options[58].value="2580"
            obj.jurisdictionCounty.options[58].text="Dawson County"
            obj.jurisdictionCounty.options[59].value="2581"
            obj.jurisdictionCounty.options[59].text="Deaf Smith County"
            obj.jurisdictionCounty.options[60].value="2582"
            obj.jurisdictionCounty.options[60].text="Delta County"
            obj.jurisdictionCounty.options[61].value="2583"
            obj.jurisdictionCounty.options[61].text="Denton County"
            obj.jurisdictionCounty.options[62].value="2584"
            obj.jurisdictionCounty.options[62].text="DeWitt County"
            obj.jurisdictionCounty.options[63].value="2585"
            obj.jurisdictionCounty.options[63].text="Dickens County"
            obj.jurisdictionCounty.options[64].value="2586"
            obj.jurisdictionCounty.options[64].text="Dimmit County"
            obj.jurisdictionCounty.options[65].value="2587"
            obj.jurisdictionCounty.options[65].text="Donley County"
            obj.jurisdictionCounty.options[66].value="2588"
            obj.jurisdictionCounty.options[66].text="Duval County"
            obj.jurisdictionCounty.options[67].value="2589"
            obj.jurisdictionCounty.options[67].text="Eastland County"
            obj.jurisdictionCounty.options[68].value="2590"
            obj.jurisdictionCounty.options[68].text="Ector County"
            obj.jurisdictionCounty.options[69].value="2591"
            obj.jurisdictionCounty.options[69].text="Edwards County"
            obj.jurisdictionCounty.options[70].value="2592"
            obj.jurisdictionCounty.options[70].text="El Paso County"
            obj.jurisdictionCounty.options[71].value="2593"
            obj.jurisdictionCounty.options[71].text="Ellis County"
            obj.jurisdictionCounty.options[72].value="2594"
            obj.jurisdictionCounty.options[72].text="Erath County"
            obj.jurisdictionCounty.options[73].value="2595"
            obj.jurisdictionCounty.options[73].text="Falls County"
            obj.jurisdictionCounty.options[74].value="2596"
            obj.jurisdictionCounty.options[74].text="Fannin County"
            obj.jurisdictionCounty.options[75].value="2597"
            obj.jurisdictionCounty.options[75].text="Fayette County"
            obj.jurisdictionCounty.options[76].value="2598"
            obj.jurisdictionCounty.options[76].text="Fisher County"
            obj.jurisdictionCounty.options[77].value="2599"
            obj.jurisdictionCounty.options[77].text="Floyd County"
            obj.jurisdictionCounty.options[78].value="2600"
            obj.jurisdictionCounty.options[78].text="Foard County"
            obj.jurisdictionCounty.options[79].value="2601"
            obj.jurisdictionCounty.options[79].text="Fort Bend County"
            obj.jurisdictionCounty.options[80].value="2602"
            obj.jurisdictionCounty.options[80].text="Franklin County"
            obj.jurisdictionCounty.options[81].value="2603"
            obj.jurisdictionCounty.options[81].text="Freestone County"
            obj.jurisdictionCounty.options[82].value="2604"
            obj.jurisdictionCounty.options[82].text="Frio County"
            obj.jurisdictionCounty.options[83].value="2605"
            obj.jurisdictionCounty.options[83].text="Gaines County"
            obj.jurisdictionCounty.options[84].value="2606"
            obj.jurisdictionCounty.options[84].text="Galveston County"
            obj.jurisdictionCounty.options[85].value="2607"
            obj.jurisdictionCounty.options[85].text="Garza County"
            obj.jurisdictionCounty.options[86].value="2608"
            obj.jurisdictionCounty.options[86].text="Gillespie County"
            obj.jurisdictionCounty.options[87].value="2609"
            obj.jurisdictionCounty.options[87].text="Glasscock County"
            obj.jurisdictionCounty.options[88].value="2610"
            obj.jurisdictionCounty.options[88].text="Goliad County"
            obj.jurisdictionCounty.options[89].value="2611"
            obj.jurisdictionCounty.options[89].text="Gonzales County"
            obj.jurisdictionCounty.options[90].value="2612"
            obj.jurisdictionCounty.options[90].text="Gray County"
            obj.jurisdictionCounty.options[91].value="2613"
            obj.jurisdictionCounty.options[91].text="Grayson County"
            obj.jurisdictionCounty.options[92].value="2614"
            obj.jurisdictionCounty.options[92].text="Gregg County"
            obj.jurisdictionCounty.options[93].value="2615"
            obj.jurisdictionCounty.options[93].text="Grimes County"
            obj.jurisdictionCounty.options[94].value="2616"
            obj.jurisdictionCounty.options[94].text="Guadalupe County"
            obj.jurisdictionCounty.options[95].value="2617"
            obj.jurisdictionCounty.options[95].text="Hale County"
            obj.jurisdictionCounty.options[96].value="2618"
            obj.jurisdictionCounty.options[96].text="Hall County"
            obj.jurisdictionCounty.options[97].value="2619"
            obj.jurisdictionCounty.options[97].text="Hamilton County"
            obj.jurisdictionCounty.options[98].value="2620"
            obj.jurisdictionCounty.options[98].text="Hansford County"
            obj.jurisdictionCounty.options[99].value="2621"
            obj.jurisdictionCounty.options[99].text="Hardeman County"
            obj.jurisdictionCounty.options[100].value="2622"
            obj.jurisdictionCounty.options[100].text="Hardin County"
            obj.jurisdictionCounty.options[101].value="2623"
            obj.jurisdictionCounty.options[101].text="Harris County"
            obj.jurisdictionCounty.options[102].value="2624"
            obj.jurisdictionCounty.options[102].text="Harrison County"
            obj.jurisdictionCounty.options[103].value="2625"
            obj.jurisdictionCounty.options[103].text="Hartley County"
            obj.jurisdictionCounty.options[104].value="2626"
            obj.jurisdictionCounty.options[104].text="Haskell County"
            obj.jurisdictionCounty.options[105].value="2627"
            obj.jurisdictionCounty.options[105].text="Hays County"
            obj.jurisdictionCounty.options[106].value="2628"
            obj.jurisdictionCounty.options[106].text="Hemphill County"
            obj.jurisdictionCounty.options[107].value="2629"
            obj.jurisdictionCounty.options[107].text="Henderson County"
            obj.jurisdictionCounty.options[108].value="2630"
            obj.jurisdictionCounty.options[108].text="Hidalgo County"
            obj.jurisdictionCounty.options[109].value="2631"
            obj.jurisdictionCounty.options[109].text="Hill County"
            obj.jurisdictionCounty.options[110].value="2632"
            obj.jurisdictionCounty.options[110].text="Hockley County"
            obj.jurisdictionCounty.options[111].value="2633"
            obj.jurisdictionCounty.options[111].text="Hood County"
            obj.jurisdictionCounty.options[112].value="2634"
            obj.jurisdictionCounty.options[112].text="Hopkins County"
            obj.jurisdictionCounty.options[113].value="2635"
            obj.jurisdictionCounty.options[113].text="Houston County"
            obj.jurisdictionCounty.options[114].value="2636"
            obj.jurisdictionCounty.options[114].text="Howard County"
            obj.jurisdictionCounty.options[115].value="2637"
            obj.jurisdictionCounty.options[115].text="Hudspeth County"
            obj.jurisdictionCounty.options[116].value="2638"
            obj.jurisdictionCounty.options[116].text="Hunt County"
            obj.jurisdictionCounty.options[117].value="2639"
            obj.jurisdictionCounty.options[117].text="Hutchinson County"
            obj.jurisdictionCounty.options[118].value="2640"
            obj.jurisdictionCounty.options[118].text="Irion County"
            obj.jurisdictionCounty.options[119].value="2641"
            obj.jurisdictionCounty.options[119].text="Jack County"
            obj.jurisdictionCounty.options[120].value="2642"
            obj.jurisdictionCounty.options[120].text="Jackson County"
            obj.jurisdictionCounty.options[121].value="2643"
            obj.jurisdictionCounty.options[121].text="Jasper County"
            obj.jurisdictionCounty.options[122].value="2644"
            obj.jurisdictionCounty.options[122].text="Jeff Davis County"
            obj.jurisdictionCounty.options[123].value="2645"
            obj.jurisdictionCounty.options[123].text="Jefferson County"
            obj.jurisdictionCounty.options[124].value="2646"
            obj.jurisdictionCounty.options[124].text="Jim Hogg County"
            obj.jurisdictionCounty.options[125].value="2647"
            obj.jurisdictionCounty.options[125].text="Jim Wells County"
            obj.jurisdictionCounty.options[126].value="2648"
            obj.jurisdictionCounty.options[126].text="Johnson County"
            obj.jurisdictionCounty.options[127].value="2649"
            obj.jurisdictionCounty.options[127].text="Jones County"
            obj.jurisdictionCounty.options[128].value="2650"
            obj.jurisdictionCounty.options[128].text="Karnes County"
            obj.jurisdictionCounty.options[129].value="2651"
            obj.jurisdictionCounty.options[129].text="Kaufman County"
            obj.jurisdictionCounty.options[130].value="2652"
            obj.jurisdictionCounty.options[130].text="Kendall County"
            obj.jurisdictionCounty.options[131].value="2653"
            obj.jurisdictionCounty.options[131].text="Kenedy County"
            obj.jurisdictionCounty.options[132].value="2654"
            obj.jurisdictionCounty.options[132].text="Kent County"
            obj.jurisdictionCounty.options[133].value="2655"
            obj.jurisdictionCounty.options[133].text="Kerr County"
            obj.jurisdictionCounty.options[134].value="2656"
            obj.jurisdictionCounty.options[134].text="Kimble County"
            obj.jurisdictionCounty.options[135].value="2657"
            obj.jurisdictionCounty.options[135].text="King County"
            obj.jurisdictionCounty.options[136].value="2658"
            obj.jurisdictionCounty.options[136].text="Kinney County"
            obj.jurisdictionCounty.options[137].value="2659"
            obj.jurisdictionCounty.options[137].text="Kleberg County"
            obj.jurisdictionCounty.options[138].value="2660"
            obj.jurisdictionCounty.options[138].text="Knox County"
            obj.jurisdictionCounty.options[139].value="2661"
            obj.jurisdictionCounty.options[139].text="La Salle County"
            obj.jurisdictionCounty.options[140].value="2662"
            obj.jurisdictionCounty.options[140].text="Lamar County"
            obj.jurisdictionCounty.options[141].value="2663"
            obj.jurisdictionCounty.options[141].text="Lamb County"
            obj.jurisdictionCounty.options[142].value="2664"
            obj.jurisdictionCounty.options[142].text="Lampasas County"
            obj.jurisdictionCounty.options[143].value="2665"
            obj.jurisdictionCounty.options[143].text="Lavaca County"
            obj.jurisdictionCounty.options[144].value="2666"
            obj.jurisdictionCounty.options[144].text="Lee County"
            obj.jurisdictionCounty.options[145].value="2667"
            obj.jurisdictionCounty.options[145].text="Leon County"
            obj.jurisdictionCounty.options[146].value="2668"
            obj.jurisdictionCounty.options[146].text="Liberty County"
            obj.jurisdictionCounty.options[147].value="2669"
            obj.jurisdictionCounty.options[147].text="Limestone County"
            obj.jurisdictionCounty.options[148].value="2670"
            obj.jurisdictionCounty.options[148].text="Lipscomb County"
            obj.jurisdictionCounty.options[149].value="2671"
            obj.jurisdictionCounty.options[149].text="Live Oak County"
            obj.jurisdictionCounty.options[150].value="2672"
            obj.jurisdictionCounty.options[150].text="Llano County"
            obj.jurisdictionCounty.options[151].value="2673"
            obj.jurisdictionCounty.options[151].text="Loving County"
            obj.jurisdictionCounty.options[152].value="2674"
            obj.jurisdictionCounty.options[152].text="Lubbock County"
            obj.jurisdictionCounty.options[153].value="2675"
            obj.jurisdictionCounty.options[153].text="Lynn County"
            obj.jurisdictionCounty.options[154].value="2676"
            obj.jurisdictionCounty.options[154].text="Madison County"
            obj.jurisdictionCounty.options[155].value="2677"
            obj.jurisdictionCounty.options[155].text="Marion County"
            obj.jurisdictionCounty.options[156].value="2678"
            obj.jurisdictionCounty.options[156].text="Martin County"
            obj.jurisdictionCounty.options[157].value="2679"
            obj.jurisdictionCounty.options[157].text="Mason County"
            obj.jurisdictionCounty.options[158].value="2680"
            obj.jurisdictionCounty.options[158].text="Matagorda County"
            obj.jurisdictionCounty.options[159].value="2681"
            obj.jurisdictionCounty.options[159].text="Maverick County"
            obj.jurisdictionCounty.options[160].value="2682"
            obj.jurisdictionCounty.options[160].text="McCulloch County"
            obj.jurisdictionCounty.options[161].value="2683"
            obj.jurisdictionCounty.options[161].text="McLennan County"
            obj.jurisdictionCounty.options[162].value="2684"
            obj.jurisdictionCounty.options[162].text="McMullen County"
            obj.jurisdictionCounty.options[163].value="2685"
            obj.jurisdictionCounty.options[163].text="Medina County"
            obj.jurisdictionCounty.options[164].value="2686"
            obj.jurisdictionCounty.options[164].text="Menard County"
            obj.jurisdictionCounty.options[165].value="2687"
            obj.jurisdictionCounty.options[165].text="Midland County"
            obj.jurisdictionCounty.options[166].value="2688"
            obj.jurisdictionCounty.options[166].text="Milam County"
            obj.jurisdictionCounty.options[167].value="2689"
            obj.jurisdictionCounty.options[167].text="Mills County"
            obj.jurisdictionCounty.options[168].value="2690"
            obj.jurisdictionCounty.options[168].text="Mitchell County"
            obj.jurisdictionCounty.options[169].value="2691"
            obj.jurisdictionCounty.options[169].text="Montague County"
            obj.jurisdictionCounty.options[170].value="2692"
            obj.jurisdictionCounty.options[170].text="Montgomery County"
            obj.jurisdictionCounty.options[171].value="2693"
            obj.jurisdictionCounty.options[171].text="Moore County"
            obj.jurisdictionCounty.options[172].value="2694"
            obj.jurisdictionCounty.options[172].text="Morris County"
            obj.jurisdictionCounty.options[173].value="2695"
            obj.jurisdictionCounty.options[173].text="Motley County"
            obj.jurisdictionCounty.options[174].value="2696"
            obj.jurisdictionCounty.options[174].text="Nacogdoches County"
            obj.jurisdictionCounty.options[175].value="2697"
            obj.jurisdictionCounty.options[175].text="Navarro County"
            obj.jurisdictionCounty.options[176].value="2698"
            obj.jurisdictionCounty.options[176].text="Newton County"
            obj.jurisdictionCounty.options[177].value="2699"
            obj.jurisdictionCounty.options[177].text="Nolan County"
            obj.jurisdictionCounty.options[178].value="2700"
            obj.jurisdictionCounty.options[178].text="Nueces County"
            obj.jurisdictionCounty.options[179].value="2701"
            obj.jurisdictionCounty.options[179].text="Ochiltree County"
            obj.jurisdictionCounty.options[180].value="2702"
            obj.jurisdictionCounty.options[180].text="Oldham County"
            obj.jurisdictionCounty.options[181].value="2703"
            obj.jurisdictionCounty.options[181].text="Orange County"
            obj.jurisdictionCounty.options[182].value="2704"
            obj.jurisdictionCounty.options[182].text="Palo Pinto County"
            obj.jurisdictionCounty.options[183].value="2705"
            obj.jurisdictionCounty.options[183].text="Panola County"
            obj.jurisdictionCounty.options[184].value="2706"
            obj.jurisdictionCounty.options[184].text="Parker County"
            obj.jurisdictionCounty.options[185].value="2707"
            obj.jurisdictionCounty.options[185].text="Parmer County"
            obj.jurisdictionCounty.options[186].value="2708"
            obj.jurisdictionCounty.options[186].text="Pecos County"
            obj.jurisdictionCounty.options[187].value="2709"
            obj.jurisdictionCounty.options[187].text="Polk County"
            obj.jurisdictionCounty.options[188].value="2710"
            obj.jurisdictionCounty.options[188].text="Potter County"
            obj.jurisdictionCounty.options[189].value="2711"
            obj.jurisdictionCounty.options[189].text="Presidio County"
            obj.jurisdictionCounty.options[190].value="2712"
            obj.jurisdictionCounty.options[190].text="Rains County"
            obj.jurisdictionCounty.options[191].value="2713"
            obj.jurisdictionCounty.options[191].text="Randall County"
            obj.jurisdictionCounty.options[192].value="2714"
            obj.jurisdictionCounty.options[192].text="Reagan County"
            obj.jurisdictionCounty.options[193].value="2715"
            obj.jurisdictionCounty.options[193].text="Real County"
            obj.jurisdictionCounty.options[194].value="2716"
            obj.jurisdictionCounty.options[194].text="Red River County"
            obj.jurisdictionCounty.options[195].value="2717"
            obj.jurisdictionCounty.options[195].text="Reeves County"
            obj.jurisdictionCounty.options[196].value="2718"
            obj.jurisdictionCounty.options[196].text="Refugio County"
            obj.jurisdictionCounty.options[197].value="2719"
            obj.jurisdictionCounty.options[197].text="Roberts County"
            obj.jurisdictionCounty.options[198].value="2720"
            obj.jurisdictionCounty.options[198].text="Robertson County"
            obj.jurisdictionCounty.options[199].value="2721"
            obj.jurisdictionCounty.options[199].text="Rockwall County"
            obj.jurisdictionCounty.options[200].value="2722"
            obj.jurisdictionCounty.options[200].text="Runnels County"
            obj.jurisdictionCounty.options[201].value="2723"
            obj.jurisdictionCounty.options[201].text="Rusk County"
            obj.jurisdictionCounty.options[202].value="2724"
            obj.jurisdictionCounty.options[202].text="Sabine County"
            obj.jurisdictionCounty.options[203].value="2725"
            obj.jurisdictionCounty.options[203].text="San Augustine County"
            obj.jurisdictionCounty.options[204].value="2726"
            obj.jurisdictionCounty.options[204].text="San Jacinto County"
            obj.jurisdictionCounty.options[205].value="2727"
            obj.jurisdictionCounty.options[205].text="San Patricio County"
            obj.jurisdictionCounty.options[206].value="2728"
            obj.jurisdictionCounty.options[206].text="San Saba County"
            obj.jurisdictionCounty.options[207].value="2731"
            obj.jurisdictionCounty.options[207].text="Schackelford County"
            obj.jurisdictionCounty.options[208].value="2729"
            obj.jurisdictionCounty.options[208].text="Schleicher County"
            obj.jurisdictionCounty.options[209].value="2730"
            obj.jurisdictionCounty.options[209].text="Scurry County"
            obj.jurisdictionCounty.options[210].value="2732"
            obj.jurisdictionCounty.options[210].text="Shelby County"
            obj.jurisdictionCounty.options[211].value="2733"
            obj.jurisdictionCounty.options[211].text="Sherman County"
            obj.jurisdictionCounty.options[212].value="2734"
            obj.jurisdictionCounty.options[212].text="Smith County"
            obj.jurisdictionCounty.options[213].value="2735"
            obj.jurisdictionCounty.options[213].text="Somervell County"
            obj.jurisdictionCounty.options[214].value="2736"
            obj.jurisdictionCounty.options[214].text="Starr County"
            obj.jurisdictionCounty.options[215].value="2737"
            obj.jurisdictionCounty.options[215].text="Stephens County"
            obj.jurisdictionCounty.options[216].value="2738"
            obj.jurisdictionCounty.options[216].text="Sterling County"
            obj.jurisdictionCounty.options[217].value="2739"
            obj.jurisdictionCounty.options[217].text="Stonewall County"
            obj.jurisdictionCounty.options[218].value="2740"
            obj.jurisdictionCounty.options[218].text="Sutton County"
            obj.jurisdictionCounty.options[219].value="2741"
            obj.jurisdictionCounty.options[219].text="Swisher County"
            obj.jurisdictionCounty.options[220].value="2742"
            obj.jurisdictionCounty.options[220].text="Tarrant County"
            obj.jurisdictionCounty.options[221].value="2743"
            obj.jurisdictionCounty.options[221].text="Taylor County"
            obj.jurisdictionCounty.options[222].value="2744"
            obj.jurisdictionCounty.options[222].text="Terrell County"
            obj.jurisdictionCounty.options[223].value="2745"
            obj.jurisdictionCounty.options[223].text="Terry County"
            obj.jurisdictionCounty.options[224].value="2746"
            obj.jurisdictionCounty.options[224].text="Throckmorton County"
            obj.jurisdictionCounty.options[225].value="2747"
            obj.jurisdictionCounty.options[225].text="Titus County"
            obj.jurisdictionCounty.options[226].value="2748"
            obj.jurisdictionCounty.options[226].text="Tom Green County"
            obj.jurisdictionCounty.options[227].value="2749"
            obj.jurisdictionCounty.options[227].text="Travis County"
            obj.jurisdictionCounty.options[228].value="2750"
            obj.jurisdictionCounty.options[228].text="Trinity County"
            obj.jurisdictionCounty.options[229].value="2751"
            obj.jurisdictionCounty.options[229].text="Tyler County"
            obj.jurisdictionCounty.options[230].value="2752"
            obj.jurisdictionCounty.options[230].text="Upshur County"
            obj.jurisdictionCounty.options[231].value="2753"
            obj.jurisdictionCounty.options[231].text="Upton County"
            obj.jurisdictionCounty.options[232].value="2754"
            obj.jurisdictionCounty.options[232].text="Uvalde County"
            obj.jurisdictionCounty.options[233].value="2755"
            obj.jurisdictionCounty.options[233].text="Val Verda County"
            obj.jurisdictionCounty.options[234].value="2756"
            obj.jurisdictionCounty.options[234].text="Van Zandt County"
            obj.jurisdictionCounty.options[235].value="2757"
            obj.jurisdictionCounty.options[235].text="Victoria County"
            obj.jurisdictionCounty.options[236].value="2758"
            obj.jurisdictionCounty.options[236].text="Walker County"
            obj.jurisdictionCounty.options[237].value="2759"
            obj.jurisdictionCounty.options[237].text="Waller County"
            obj.jurisdictionCounty.options[238].value="2760"
            obj.jurisdictionCounty.options[238].text="Ward County"
            obj.jurisdictionCounty.options[239].value="2761"
            obj.jurisdictionCounty.options[239].text="Washington County"
            obj.jurisdictionCounty.options[240].value="2762"
            obj.jurisdictionCounty.options[240].text="Webb County"
            obj.jurisdictionCounty.options[241].value="2763"
            obj.jurisdictionCounty.options[241].text="Wharton County"
            obj.jurisdictionCounty.options[242].value="2764"
            obj.jurisdictionCounty.options[242].text="Wheeler County"
            obj.jurisdictionCounty.options[243].value="2765"
            obj.jurisdictionCounty.options[243].text="Wichita County"
            obj.jurisdictionCounty.options[244].value="2766"
            obj.jurisdictionCounty.options[244].text="Wilbarger County"
            obj.jurisdictionCounty.options[245].value="2767"
            obj.jurisdictionCounty.options[245].text="Willacy County"
            obj.jurisdictionCounty.options[246].value="2768"
            obj.jurisdictionCounty.options[246].text="Williamson County"
            obj.jurisdictionCounty.options[247].value="2769"
            obj.jurisdictionCounty.options[247].text="Wilson County"
            obj.jurisdictionCounty.options[248].value="2770"
            obj.jurisdictionCounty.options[248].text="Winkler County"
            obj.jurisdictionCounty.options[249].value="2771"
            obj.jurisdictionCounty.options[249].text="Wise County"
            obj.jurisdictionCounty.options[250].value="2772"
            obj.jurisdictionCounty.options[250].text="Wood County"
            obj.jurisdictionCounty.options[251].value="2773"
            obj.jurisdictionCounty.options[251].text="Yoakum County"
            obj.jurisdictionCounty.options[252].value="2774"
            obj.jurisdictionCounty.options[252].text="Young County"
            obj.jurisdictionCounty.options[253].value="2775"
            obj.jurisdictionCounty.options[253].text="Zapata County"
            obj.jurisdictionCounty.options[254].value="2776"
            obj.jurisdictionCounty.options[254].text="Zavala County" 
            break;

            
         
         	case 45:
			
             
            obj.jurisdictionCounty.length=30
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2777"
            obj.jurisdictionCounty.options[1].text="Beaver County"
            obj.jurisdictionCounty.options[2].value="2778"
            obj.jurisdictionCounty.options[2].text="Box Elder County"
            obj.jurisdictionCounty.options[3].value="2779"
            obj.jurisdictionCounty.options[3].text="Cache County"
            obj.jurisdictionCounty.options[4].value="2780"
            obj.jurisdictionCounty.options[4].text="Carbon County"
            obj.jurisdictionCounty.options[5].value="2781"
            obj.jurisdictionCounty.options[5].text="Daggett County"
            obj.jurisdictionCounty.options[6].value="2782"
            obj.jurisdictionCounty.options[6].text="Davis County"
            obj.jurisdictionCounty.options[7].value="2783"
            obj.jurisdictionCounty.options[7].text="Duchesne County"
            obj.jurisdictionCounty.options[8].value="2784"
            obj.jurisdictionCounty.options[8].text="Emery County"
            obj.jurisdictionCounty.options[9].value="2785"
            obj.jurisdictionCounty.options[9].text="Garfield County"
            obj.jurisdictionCounty.options[10].value="2786"
            obj.jurisdictionCounty.options[10].text="Grand County"
            obj.jurisdictionCounty.options[11].value="2787"
            obj.jurisdictionCounty.options[11].text="Iron County"
            obj.jurisdictionCounty.options[12].value="2788"
            obj.jurisdictionCounty.options[12].text="Juab County"
            obj.jurisdictionCounty.options[13].value="2789"
            obj.jurisdictionCounty.options[13].text="Kane County"
            obj.jurisdictionCounty.options[14].value="2790"
            obj.jurisdictionCounty.options[14].text="Millard County"
            obj.jurisdictionCounty.options[15].value="2791"
            obj.jurisdictionCounty.options[15].text="Morgan County"
            obj.jurisdictionCounty.options[16].value="2792"
            obj.jurisdictionCounty.options[16].text="Piute County"
            obj.jurisdictionCounty.options[17].value="2793"
            obj.jurisdictionCounty.options[17].text="Rich County"
            obj.jurisdictionCounty.options[18].value="2794"
            obj.jurisdictionCounty.options[18].text="Salt Lake County"
            obj.jurisdictionCounty.options[19].value="2795"
            obj.jurisdictionCounty.options[19].text="San Juan County"
            obj.jurisdictionCounty.options[20].value="2796"
            obj.jurisdictionCounty.options[20].text="Sanpete County"
            obj.jurisdictionCounty.options[21].value="2797"
            obj.jurisdictionCounty.options[21].text="Sevier County"
            obj.jurisdictionCounty.options[22].value="2798"
            obj.jurisdictionCounty.options[22].text="Summit County"
            obj.jurisdictionCounty.options[23].value="2799"
            obj.jurisdictionCounty.options[23].text="Tooele County"
            obj.jurisdictionCounty.options[24].value="2800"
            obj.jurisdictionCounty.options[24].text="Uintah County"
            obj.jurisdictionCounty.options[25].value="2801"
            obj.jurisdictionCounty.options[25].text="Utah County"
            obj.jurisdictionCounty.options[26].value="2802"
            obj.jurisdictionCounty.options[26].text="Wasatch County"
            obj.jurisdictionCounty.options[27].value="2803"
            obj.jurisdictionCounty.options[27].text="Washington County"
            obj.jurisdictionCounty.options[28].value="2804"
            obj.jurisdictionCounty.options[28].text="Wayne County"
            obj.jurisdictionCounty.options[29].value="2805"
            obj.jurisdictionCounty.options[29].text="Weber County" 
            break;

            
         
         	case 46:
			
             
            obj.jurisdictionCounty.length=15
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2937"
            obj.jurisdictionCounty.options[1].text="Addison County"
            obj.jurisdictionCounty.options[2].value="2938"
            obj.jurisdictionCounty.options[2].text="Bennington County"
            obj.jurisdictionCounty.options[3].value="2939"
            obj.jurisdictionCounty.options[3].text="Caledonia County"
            obj.jurisdictionCounty.options[4].value="2940"
            obj.jurisdictionCounty.options[4].text="Chittenden County"
            obj.jurisdictionCounty.options[5].value="2941"
            obj.jurisdictionCounty.options[5].text="Essex County"
            obj.jurisdictionCounty.options[6].value="2942"
            obj.jurisdictionCounty.options[6].text="Franklin County"
            obj.jurisdictionCounty.options[7].value="2943"
            obj.jurisdictionCounty.options[7].text="Grand Isle County"
            obj.jurisdictionCounty.options[8].value="2944"
            obj.jurisdictionCounty.options[8].text="Lamoille County"
            obj.jurisdictionCounty.options[9].value="2945"
            obj.jurisdictionCounty.options[9].text="Orange County"
            obj.jurisdictionCounty.options[10].value="2946"
            obj.jurisdictionCounty.options[10].text="Orleans County"
            obj.jurisdictionCounty.options[11].value="2947"
            obj.jurisdictionCounty.options[11].text="Rutland County"
            obj.jurisdictionCounty.options[12].value="2948"
            obj.jurisdictionCounty.options[12].text="Washington County"
            obj.jurisdictionCounty.options[13].value="2949"
            obj.jurisdictionCounty.options[13].text="Windham County"
            obj.jurisdictionCounty.options[14].value="2950"
            obj.jurisdictionCounty.options[14].text="Windsor County" 
            break;

            
         
         	case 47:
			
             
            obj.jurisdictionCounty.length=136
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2806"
            obj.jurisdictionCounty.options[1].text="Accomack County"
            obj.jurisdictionCounty.options[2].value="2807"
            obj.jurisdictionCounty.options[2].text="Albemarle County"
            obj.jurisdictionCounty.options[3].value="2808"
            obj.jurisdictionCounty.options[3].text="Alexandria Independent City"
            obj.jurisdictionCounty.options[4].value="2809"
            obj.jurisdictionCounty.options[4].text="Alleghany County"
            obj.jurisdictionCounty.options[5].value="2810"
            obj.jurisdictionCounty.options[5].text="Amelia County"
            obj.jurisdictionCounty.options[6].value="2811"
            obj.jurisdictionCounty.options[6].text="Amherst County"
            obj.jurisdictionCounty.options[7].value="2812"
            obj.jurisdictionCounty.options[7].text="Appomattox County"
            obj.jurisdictionCounty.options[8].value="2813"
            obj.jurisdictionCounty.options[8].text="Arlington County"
            obj.jurisdictionCounty.options[9].value="2814"
            obj.jurisdictionCounty.options[9].text="Augusta County"
            obj.jurisdictionCounty.options[10].value="2815"
            obj.jurisdictionCounty.options[10].text="Bath County"
            obj.jurisdictionCounty.options[11].value="2816"
            obj.jurisdictionCounty.options[11].text="Bedford County"
            obj.jurisdictionCounty.options[12].value="3174"
            obj.jurisdictionCounty.options[12].text="Bedford Independent City"
            obj.jurisdictionCounty.options[13].value="2817"
            obj.jurisdictionCounty.options[13].text="Bland County"
            obj.jurisdictionCounty.options[14].value="2818"
            obj.jurisdictionCounty.options[14].text="Botetourt County"
            obj.jurisdictionCounty.options[15].value="2819"
            obj.jurisdictionCounty.options[15].text="Bristol Independent City"
            obj.jurisdictionCounty.options[16].value="2820"
            obj.jurisdictionCounty.options[16].text="Brunswick County"
            obj.jurisdictionCounty.options[17].value="2821"
            obj.jurisdictionCounty.options[17].text="Buchanan County"
            obj.jurisdictionCounty.options[18].value="2822"
            obj.jurisdictionCounty.options[18].text="Buckingham County"
            obj.jurisdictionCounty.options[19].value="2823"
            obj.jurisdictionCounty.options[19].text="Buena Vista Independent City"
            obj.jurisdictionCounty.options[20].value="2824"
            obj.jurisdictionCounty.options[20].text="Campbell County"
            obj.jurisdictionCounty.options[21].value="2825"
            obj.jurisdictionCounty.options[21].text="Caroline County"
            obj.jurisdictionCounty.options[22].value="2826"
            obj.jurisdictionCounty.options[22].text="Carroll County"
            obj.jurisdictionCounty.options[23].value="2827"
            obj.jurisdictionCounty.options[23].text="Charles City County"
            obj.jurisdictionCounty.options[24].value="2828"
            obj.jurisdictionCounty.options[24].text="Charlotte County"
            obj.jurisdictionCounty.options[25].value="2829"
            obj.jurisdictionCounty.options[25].text="Charlottesville Independent City"
            obj.jurisdictionCounty.options[26].value="2830"
            obj.jurisdictionCounty.options[26].text="Chesapeake Independent City"
            obj.jurisdictionCounty.options[27].value="2831"
            obj.jurisdictionCounty.options[27].text="Chesterfield County"
            obj.jurisdictionCounty.options[28].value="2832"
            obj.jurisdictionCounty.options[28].text="Clarke County"
            obj.jurisdictionCounty.options[29].value="2833"
            obj.jurisdictionCounty.options[29].text="Clifton Forge Independent City"
            obj.jurisdictionCounty.options[30].value="2834"
            obj.jurisdictionCounty.options[30].text="Colonial Heights Independent City"
            obj.jurisdictionCounty.options[31].value="2835"
            obj.jurisdictionCounty.options[31].text="Covington Independent City"
            obj.jurisdictionCounty.options[32].value="2836"
            obj.jurisdictionCounty.options[32].text="Craig County"
            obj.jurisdictionCounty.options[33].value="2837"
            obj.jurisdictionCounty.options[33].text="Culpeper County"
            obj.jurisdictionCounty.options[34].value="2838"
            obj.jurisdictionCounty.options[34].text="Cumberland County"
            obj.jurisdictionCounty.options[35].value="2839"
            obj.jurisdictionCounty.options[35].text="Danville Independent City"
            obj.jurisdictionCounty.options[36].value="2840"
            obj.jurisdictionCounty.options[36].text="Dickenson County"
            obj.jurisdictionCounty.options[37].value="2841"
            obj.jurisdictionCounty.options[37].text="Dinwiddie County"
            obj.jurisdictionCounty.options[38].value="2842"
            obj.jurisdictionCounty.options[38].text="Emporia Independent City"
            obj.jurisdictionCounty.options[39].value="2843"
            obj.jurisdictionCounty.options[39].text="Essex County"
            obj.jurisdictionCounty.options[40].value="2844"
            obj.jurisdictionCounty.options[40].text="Fairfax County"
            obj.jurisdictionCounty.options[41].value="3175"
            obj.jurisdictionCounty.options[41].text="Fairfax Independent City"
            obj.jurisdictionCounty.options[42].value="2845"
            obj.jurisdictionCounty.options[42].text="Falls Church Independent City"
            obj.jurisdictionCounty.options[43].value="2846"
            obj.jurisdictionCounty.options[43].text="Fauquier County"
            obj.jurisdictionCounty.options[44].value="2847"
            obj.jurisdictionCounty.options[44].text="Floyd County"
            obj.jurisdictionCounty.options[45].value="2848"
            obj.jurisdictionCounty.options[45].text="Fluvanna County"
            obj.jurisdictionCounty.options[46].value="2849"
            obj.jurisdictionCounty.options[46].text="Franklin County"
            obj.jurisdictionCounty.options[47].value="2850"
            obj.jurisdictionCounty.options[47].text="Frederick County"
            obj.jurisdictionCounty.options[48].value="2851"
            obj.jurisdictionCounty.options[48].text="Fredericksburg Independent City"
            obj.jurisdictionCounty.options[49].value="2852"
            obj.jurisdictionCounty.options[49].text="Galax Independent City"
            obj.jurisdictionCounty.options[50].value="2853"
            obj.jurisdictionCounty.options[50].text="Giles County"
            obj.jurisdictionCounty.options[51].value="2854"
            obj.jurisdictionCounty.options[51].text="Gloucester County"
            obj.jurisdictionCounty.options[52].value="2855"
            obj.jurisdictionCounty.options[52].text="Goochland County"
            obj.jurisdictionCounty.options[53].value="2856"
            obj.jurisdictionCounty.options[53].text="Grayson County"
            obj.jurisdictionCounty.options[54].value="2857"
            obj.jurisdictionCounty.options[54].text="Greene County"
            obj.jurisdictionCounty.options[55].value="2858"
            obj.jurisdictionCounty.options[55].text="Greensville County"
            obj.jurisdictionCounty.options[56].value="2859"
            obj.jurisdictionCounty.options[56].text="Halifax County"
            obj.jurisdictionCounty.options[57].value="2860"
            obj.jurisdictionCounty.options[57].text="Hampton Independent City"
            obj.jurisdictionCounty.options[58].value="2861"
            obj.jurisdictionCounty.options[58].text="Hanover County"
            obj.jurisdictionCounty.options[59].value="2862"
            obj.jurisdictionCounty.options[59].text="Harrisonburg Independent City"
            obj.jurisdictionCounty.options[60].value="2863"
            obj.jurisdictionCounty.options[60].text="Henrico County"
            obj.jurisdictionCounty.options[61].value="2864"
            obj.jurisdictionCounty.options[61].text="Henry County"
            obj.jurisdictionCounty.options[62].value="2865"
            obj.jurisdictionCounty.options[62].text="Highland County"
            obj.jurisdictionCounty.options[63].value="2866"
            obj.jurisdictionCounty.options[63].text="Hopewell Independent City"
            obj.jurisdictionCounty.options[64].value="2867"
            obj.jurisdictionCounty.options[64].text="Isle of Wight County"
            obj.jurisdictionCounty.options[65].value="2868"
            obj.jurisdictionCounty.options[65].text="James City County"
            obj.jurisdictionCounty.options[66].value="2869"
            obj.jurisdictionCounty.options[66].text="King And Queen County"
            obj.jurisdictionCounty.options[67].value="2870"
            obj.jurisdictionCounty.options[67].text="King George County"
            obj.jurisdictionCounty.options[68].value="2871"
            obj.jurisdictionCounty.options[68].text="King William County"
            obj.jurisdictionCounty.options[69].value="2872"
            obj.jurisdictionCounty.options[69].text="Lancaster County"
            obj.jurisdictionCounty.options[70].value="2873"
            obj.jurisdictionCounty.options[70].text="Lee County"
            obj.jurisdictionCounty.options[71].value="2874"
            obj.jurisdictionCounty.options[71].text="Lexington Independent City"
            obj.jurisdictionCounty.options[72].value="2875"
            obj.jurisdictionCounty.options[72].text="Loudoun County"
            obj.jurisdictionCounty.options[73].value="2876"
            obj.jurisdictionCounty.options[73].text="Louisa County"
            obj.jurisdictionCounty.options[74].value="2877"
            obj.jurisdictionCounty.options[74].text="Lunenburg County"
            obj.jurisdictionCounty.options[75].value="2878"
            obj.jurisdictionCounty.options[75].text="Lynchburg Independent City"
            obj.jurisdictionCounty.options[76].value="2879"
            obj.jurisdictionCounty.options[76].text="Madison County"
            obj.jurisdictionCounty.options[77].value="2880"
            obj.jurisdictionCounty.options[77].text="Manassas Independent City"
            obj.jurisdictionCounty.options[78].value="2881"
            obj.jurisdictionCounty.options[78].text="Manassas Park Independent City"
            obj.jurisdictionCounty.options[79].value="2882"
            obj.jurisdictionCounty.options[79].text="Martinsville Independent City"
            obj.jurisdictionCounty.options[80].value="2883"
            obj.jurisdictionCounty.options[80].text="Mathews County"
            obj.jurisdictionCounty.options[81].value="2884"
            obj.jurisdictionCounty.options[81].text="Mecklenburg County"
            obj.jurisdictionCounty.options[82].value="2885"
            obj.jurisdictionCounty.options[82].text="Middlesex County"
            obj.jurisdictionCounty.options[83].value="2886"
            obj.jurisdictionCounty.options[83].text="Montgomery County"
            obj.jurisdictionCounty.options[84].value="2887"
            obj.jurisdictionCounty.options[84].text="Nelson County"
            obj.jurisdictionCounty.options[85].value="2888"
            obj.jurisdictionCounty.options[85].text="New Kent County"
            obj.jurisdictionCounty.options[86].value="2889"
            obj.jurisdictionCounty.options[86].text="Newport News Independent City"
            obj.jurisdictionCounty.options[87].value="2890"
            obj.jurisdictionCounty.options[87].text="Norfolk Independent City"
            obj.jurisdictionCounty.options[88].value="2891"
            obj.jurisdictionCounty.options[88].text="Northampton County"
            obj.jurisdictionCounty.options[89].value="2892"
            obj.jurisdictionCounty.options[89].text="Northumberland County"
            obj.jurisdictionCounty.options[90].value="2893"
            obj.jurisdictionCounty.options[90].text="Norton Independent City"
            obj.jurisdictionCounty.options[91].value="2894"
            obj.jurisdictionCounty.options[91].text="Nottoway County"
            obj.jurisdictionCounty.options[92].value="2895"
            obj.jurisdictionCounty.options[92].text="Orange County"
            obj.jurisdictionCounty.options[93].value="2896"
            obj.jurisdictionCounty.options[93].text="Page County"
            obj.jurisdictionCounty.options[94].value="2897"
            obj.jurisdictionCounty.options[94].text="Patrick County"
            obj.jurisdictionCounty.options[95].value="2898"
            obj.jurisdictionCounty.options[95].text="Petersburg Independent City"
            obj.jurisdictionCounty.options[96].value="2899"
            obj.jurisdictionCounty.options[96].text="Pittsylvania County"
            obj.jurisdictionCounty.options[97].value="2900"
            obj.jurisdictionCounty.options[97].text="Poquoson Independent City"
            obj.jurisdictionCounty.options[98].value="2901"
            obj.jurisdictionCounty.options[98].text="Portsmouth Independent City"
            obj.jurisdictionCounty.options[99].value="2902"
            obj.jurisdictionCounty.options[99].text="Powhatan County"
            obj.jurisdictionCounty.options[100].value="2903"
            obj.jurisdictionCounty.options[100].text="Prince Edward County"
            obj.jurisdictionCounty.options[101].value="2904"
            obj.jurisdictionCounty.options[101].text="Prince George County"
            obj.jurisdictionCounty.options[102].value="2905"
            obj.jurisdictionCounty.options[102].text="Prince William County"
            obj.jurisdictionCounty.options[103].value="2906"
            obj.jurisdictionCounty.options[103].text="Pulaski County"
            obj.jurisdictionCounty.options[104].value="2907"
            obj.jurisdictionCounty.options[104].text="Radford Independent City"
            obj.jurisdictionCounty.options[105].value="2908"
            obj.jurisdictionCounty.options[105].text="Rappahannock County"
            obj.jurisdictionCounty.options[106].value="2909"
            obj.jurisdictionCounty.options[106].text="Richmond County"
            obj.jurisdictionCounty.options[107].value="3176"
            obj.jurisdictionCounty.options[107].text="Richmond Independent City"
            obj.jurisdictionCounty.options[108].value="3177"
            obj.jurisdictionCounty.options[108].text="Roanoke Independent City"
            obj.jurisdictionCounty.options[109].value="2910"
            obj.jurisdictionCounty.options[109].text="Roanoke County"
            obj.jurisdictionCounty.options[110].value="2911"
            obj.jurisdictionCounty.options[110].text="Rockbridge County"
            obj.jurisdictionCounty.options[111].value="2912"
            obj.jurisdictionCounty.options[111].text="Rockingham County"
            obj.jurisdictionCounty.options[112].value="2913"
            obj.jurisdictionCounty.options[112].text="Russell County"
            obj.jurisdictionCounty.options[113].value="2914"
            obj.jurisdictionCounty.options[113].text="Salem Independent City"
            obj.jurisdictionCounty.options[114].value="2915"
            obj.jurisdictionCounty.options[114].text="Scott County"
            obj.jurisdictionCounty.options[115].value="2916"
            obj.jurisdictionCounty.options[115].text="Shenandoah County"
            obj.jurisdictionCounty.options[116].value="2917"
            obj.jurisdictionCounty.options[116].text="Smyth County"
            obj.jurisdictionCounty.options[117].value="2918"
            obj.jurisdictionCounty.options[117].text="South Boston Independent City"
            obj.jurisdictionCounty.options[118].value="2919"
            obj.jurisdictionCounty.options[118].text="Southampton County"
            obj.jurisdictionCounty.options[119].value="2920"
            obj.jurisdictionCounty.options[119].text="Spotsylvania County"
            obj.jurisdictionCounty.options[120].value="2921"
            obj.jurisdictionCounty.options[120].text="Stafford County"
            obj.jurisdictionCounty.options[121].value="2922"
            obj.jurisdictionCounty.options[121].text="Staunton Independent City"
            obj.jurisdictionCounty.options[122].value="2923"
            obj.jurisdictionCounty.options[122].text="Suffolk Independent City"
            obj.jurisdictionCounty.options[123].value="2924"
            obj.jurisdictionCounty.options[123].text="Surry County"
            obj.jurisdictionCounty.options[124].value="2925"
            obj.jurisdictionCounty.options[124].text="Sussex County"
            obj.jurisdictionCounty.options[125].value="2926"
            obj.jurisdictionCounty.options[125].text="Tazewell County"
            obj.jurisdictionCounty.options[126].value="2927"
            obj.jurisdictionCounty.options[126].text="Virginia Beach Independent City"
            obj.jurisdictionCounty.options[127].value="2928"
            obj.jurisdictionCounty.options[127].text="Warren County"
            obj.jurisdictionCounty.options[128].value="2929"
            obj.jurisdictionCounty.options[128].text="Washington County"
            obj.jurisdictionCounty.options[129].value="2930"
            obj.jurisdictionCounty.options[129].text="Waynesboro Independent City"
            obj.jurisdictionCounty.options[130].value="2931"
            obj.jurisdictionCounty.options[130].text="Westmoreland County"
            obj.jurisdictionCounty.options[131].value="2932"
            obj.jurisdictionCounty.options[131].text="Williamsburg Independent City"
            obj.jurisdictionCounty.options[132].value="2933"
            obj.jurisdictionCounty.options[132].text="Winchester Independent City"
            obj.jurisdictionCounty.options[133].value="2934"
            obj.jurisdictionCounty.options[133].text="Wise County"
            obj.jurisdictionCounty.options[134].value="2935"
            obj.jurisdictionCounty.options[134].text="Wythe County"
            obj.jurisdictionCounty.options[135].value="2936"
            obj.jurisdictionCounty.options[135].text="York County" 
            break;

            
         
         	case 48:
			
             
            obj.jurisdictionCounty.length=40
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2951"
            obj.jurisdictionCounty.options[1].text="Adams County"
            obj.jurisdictionCounty.options[2].value="2952"
            obj.jurisdictionCounty.options[2].text="Asotin County"
            obj.jurisdictionCounty.options[3].value="2953"
            obj.jurisdictionCounty.options[3].text="Benton County"
            obj.jurisdictionCounty.options[4].value="2954"
            obj.jurisdictionCounty.options[4].text="Chelan County"
            obj.jurisdictionCounty.options[5].value="2955"
            obj.jurisdictionCounty.options[5].text="Clallam County"
            obj.jurisdictionCounty.options[6].value="2956"
            obj.jurisdictionCounty.options[6].text="Clark County"
            obj.jurisdictionCounty.options[7].value="2957"
            obj.jurisdictionCounty.options[7].text="Columbia County"
            obj.jurisdictionCounty.options[8].value="2958"
            obj.jurisdictionCounty.options[8].text="Cowlitz County"
            obj.jurisdictionCounty.options[9].value="2959"
            obj.jurisdictionCounty.options[9].text="Douglas County"
            obj.jurisdictionCounty.options[10].value="2960"
            obj.jurisdictionCounty.options[10].text="Ferry County"
            obj.jurisdictionCounty.options[11].value="2961"
            obj.jurisdictionCounty.options[11].text="Franklin County"
            obj.jurisdictionCounty.options[12].value="2962"
            obj.jurisdictionCounty.options[12].text="Garfield County"
            obj.jurisdictionCounty.options[13].value="2963"
            obj.jurisdictionCounty.options[13].text="Grant County"
            obj.jurisdictionCounty.options[14].value="2964"
            obj.jurisdictionCounty.options[14].text="Grays Harbor County"
            obj.jurisdictionCounty.options[15].value="2965"
            obj.jurisdictionCounty.options[15].text="Island County"
            obj.jurisdictionCounty.options[16].value="2966"
            obj.jurisdictionCounty.options[16].text="Jefferson County"
            obj.jurisdictionCounty.options[17].value="2967"
            obj.jurisdictionCounty.options[17].text="King County"
            obj.jurisdictionCounty.options[18].value="2968"
            obj.jurisdictionCounty.options[18].text="Kitsap County"
            obj.jurisdictionCounty.options[19].value="2969"
            obj.jurisdictionCounty.options[19].text="Kittitas County"
            obj.jurisdictionCounty.options[20].value="2970"
            obj.jurisdictionCounty.options[20].text="Klickitat County"
            obj.jurisdictionCounty.options[21].value="2971"
            obj.jurisdictionCounty.options[21].text="Lewis County"
            obj.jurisdictionCounty.options[22].value="2972"
            obj.jurisdictionCounty.options[22].text="Lincoln County"
            obj.jurisdictionCounty.options[23].value="2973"
            obj.jurisdictionCounty.options[23].text="Mason County"
            obj.jurisdictionCounty.options[24].value="2974"
            obj.jurisdictionCounty.options[24].text="Okanogan County"
            obj.jurisdictionCounty.options[25].value="2975"
            obj.jurisdictionCounty.options[25].text="Pacific County"
            obj.jurisdictionCounty.options[26].value="2976"
            obj.jurisdictionCounty.options[26].text="Pend Oreille County"
            obj.jurisdictionCounty.options[27].value="2977"
            obj.jurisdictionCounty.options[27].text="Pierce County"
            obj.jurisdictionCounty.options[28].value="2978"
            obj.jurisdictionCounty.options[28].text="San Juan County"
            obj.jurisdictionCounty.options[29].value="2979"
            obj.jurisdictionCounty.options[29].text="Skagit County"
            obj.jurisdictionCounty.options[30].value="2980"
            obj.jurisdictionCounty.options[30].text="Skamania County"
            obj.jurisdictionCounty.options[31].value="2981"
            obj.jurisdictionCounty.options[31].text="Snohomish County"
            obj.jurisdictionCounty.options[32].value="2982"
            obj.jurisdictionCounty.options[32].text="Spokane County"
            obj.jurisdictionCounty.options[33].value="2983"
            obj.jurisdictionCounty.options[33].text="Stevens County"
            obj.jurisdictionCounty.options[34].value="2984"
            obj.jurisdictionCounty.options[34].text="Thurston County"
            obj.jurisdictionCounty.options[35].value="2985"
            obj.jurisdictionCounty.options[35].text="Wahkiakum County"
            obj.jurisdictionCounty.options[36].value="2986"
            obj.jurisdictionCounty.options[36].text="Walla Walla County"
            obj.jurisdictionCounty.options[37].value="2987"
            obj.jurisdictionCounty.options[37].text="Whatcom County"
            obj.jurisdictionCounty.options[38].value="2988"
            obj.jurisdictionCounty.options[38].text="Whitman County"
            obj.jurisdictionCounty.options[39].value="2989"
            obj.jurisdictionCounty.options[39].text="Yakima County" 
            break;

            
         
         	case 49:
			
             
            obj.jurisdictionCounty.length=56
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="3062"
            obj.jurisdictionCounty.options[1].text="Barbour County"
            obj.jurisdictionCounty.options[2].value="3063"
            obj.jurisdictionCounty.options[2].text="Berkeley County"
            obj.jurisdictionCounty.options[3].value="3064"
            obj.jurisdictionCounty.options[3].text="Boone County"
            obj.jurisdictionCounty.options[4].value="3065"
            obj.jurisdictionCounty.options[4].text="Braxton County"
            obj.jurisdictionCounty.options[5].value="3066"
            obj.jurisdictionCounty.options[5].text="Brooke County"
            obj.jurisdictionCounty.options[6].value="3067"
            obj.jurisdictionCounty.options[6].text="Cabell County"
            obj.jurisdictionCounty.options[7].value="3068"
            obj.jurisdictionCounty.options[7].text="Calhoun County"
            obj.jurisdictionCounty.options[8].value="3069"
            obj.jurisdictionCounty.options[8].text="Clay County"
            obj.jurisdictionCounty.options[9].value="3070"
            obj.jurisdictionCounty.options[9].text="Doddridge County"
            obj.jurisdictionCounty.options[10].value="3071"
            obj.jurisdictionCounty.options[10].text="Fayette County"
            obj.jurisdictionCounty.options[11].value="3072"
            obj.jurisdictionCounty.options[11].text="Gilmer County"
            obj.jurisdictionCounty.options[12].value="3073"
            obj.jurisdictionCounty.options[12].text="Grant County"
            obj.jurisdictionCounty.options[13].value="3074"
            obj.jurisdictionCounty.options[13].text="Greenbrier County"
            obj.jurisdictionCounty.options[14].value="3075"
            obj.jurisdictionCounty.options[14].text="Hampshire County"
            obj.jurisdictionCounty.options[15].value="3076"
            obj.jurisdictionCounty.options[15].text="Hancock County"
            obj.jurisdictionCounty.options[16].value="3077"
            obj.jurisdictionCounty.options[16].text="Hardy County"
            obj.jurisdictionCounty.options[17].value="3078"
            obj.jurisdictionCounty.options[17].text="Harrison County"
            obj.jurisdictionCounty.options[18].value="3079"
            obj.jurisdictionCounty.options[18].text="Jackson County"
            obj.jurisdictionCounty.options[19].value="3080"
            obj.jurisdictionCounty.options[19].text="Jefferson County"
            obj.jurisdictionCounty.options[20].value="3081"
            obj.jurisdictionCounty.options[20].text="Kanawha County"
            obj.jurisdictionCounty.options[21].value="3082"
            obj.jurisdictionCounty.options[21].text="Lewis County"
            obj.jurisdictionCounty.options[22].value="3083"
            obj.jurisdictionCounty.options[22].text="Lincoln County"
            obj.jurisdictionCounty.options[23].value="3084"
            obj.jurisdictionCounty.options[23].text="Logan County"
            obj.jurisdictionCounty.options[24].value="3085"
            obj.jurisdictionCounty.options[24].text="Marion County"
            obj.jurisdictionCounty.options[25].value="3086"
            obj.jurisdictionCounty.options[25].text="Marshall County"
            obj.jurisdictionCounty.options[26].value="3087"
            obj.jurisdictionCounty.options[26].text="Mason County"
            obj.jurisdictionCounty.options[27].value="3088"
            obj.jurisdictionCounty.options[27].text="McDowell County"
            obj.jurisdictionCounty.options[28].value="3089"
            obj.jurisdictionCounty.options[28].text="Mercer County"
            obj.jurisdictionCounty.options[29].value="3090"
            obj.jurisdictionCounty.options[29].text="Mineral County"
            obj.jurisdictionCounty.options[30].value="3091"
            obj.jurisdictionCounty.options[30].text="Mingo County"
            obj.jurisdictionCounty.options[31].value="3092"
            obj.jurisdictionCounty.options[31].text="Monongalia County"
            obj.jurisdictionCounty.options[32].value="3093"
            obj.jurisdictionCounty.options[32].text="Monroe County"
            obj.jurisdictionCounty.options[33].value="3094"
            obj.jurisdictionCounty.options[33].text="Morgan County"
            obj.jurisdictionCounty.options[34].value="3095"
            obj.jurisdictionCounty.options[34].text="Nicholas County"
            obj.jurisdictionCounty.options[35].value="3096"
            obj.jurisdictionCounty.options[35].text="Ohio County"
            obj.jurisdictionCounty.options[36].value="3097"
            obj.jurisdictionCounty.options[36].text="Pendleton County"
            obj.jurisdictionCounty.options[37].value="3098"
            obj.jurisdictionCounty.options[37].text="Pleasants County"
            obj.jurisdictionCounty.options[38].value="3099"
            obj.jurisdictionCounty.options[38].text="Pocahontas County"
            obj.jurisdictionCounty.options[39].value="3100"
            obj.jurisdictionCounty.options[39].text="Preston County"
            obj.jurisdictionCounty.options[40].value="3101"
            obj.jurisdictionCounty.options[40].text="Putnam County"
            obj.jurisdictionCounty.options[41].value="3102"
            obj.jurisdictionCounty.options[41].text="Raleigh County"
            obj.jurisdictionCounty.options[42].value="3103"
            obj.jurisdictionCounty.options[42].text="Randolph County"
            obj.jurisdictionCounty.options[43].value="3104"
            obj.jurisdictionCounty.options[43].text="Ritchie County"
            obj.jurisdictionCounty.options[44].value="3105"
            obj.jurisdictionCounty.options[44].text="Roane County"
            obj.jurisdictionCounty.options[45].value="3106"
            obj.jurisdictionCounty.options[45].text="Summers County"
            obj.jurisdictionCounty.options[46].value="3107"
            obj.jurisdictionCounty.options[46].text="Taylor County"
            obj.jurisdictionCounty.options[47].value="3108"
            obj.jurisdictionCounty.options[47].text="Tucker County"
            obj.jurisdictionCounty.options[48].value="3109"
            obj.jurisdictionCounty.options[48].text="Tyler County"
            obj.jurisdictionCounty.options[49].value="3110"
            obj.jurisdictionCounty.options[49].text="Upshur County"
            obj.jurisdictionCounty.options[50].value="3111"
            obj.jurisdictionCounty.options[50].text="Wayne County"
            obj.jurisdictionCounty.options[51].value="3112"
            obj.jurisdictionCounty.options[51].text="Webster County"
            obj.jurisdictionCounty.options[52].value="3113"
            obj.jurisdictionCounty.options[52].text="Wetzel County"
            obj.jurisdictionCounty.options[53].value="3114"
            obj.jurisdictionCounty.options[53].text="Wirt County"
            obj.jurisdictionCounty.options[54].value="3115"
            obj.jurisdictionCounty.options[54].text="Wood County"
            obj.jurisdictionCounty.options[55].value="3116"
            obj.jurisdictionCounty.options[55].text="Wyoming County" 
            break;

            
         
         	case 50:
			
             
            obj.jurisdictionCounty.length=73
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="2990"
            obj.jurisdictionCounty.options[1].text="Adams County"
            obj.jurisdictionCounty.options[2].value="2991"
            obj.jurisdictionCounty.options[2].text="Ashland County"
            obj.jurisdictionCounty.options[3].value="2992"
            obj.jurisdictionCounty.options[3].text="Barron County"
            obj.jurisdictionCounty.options[4].value="2993"
            obj.jurisdictionCounty.options[4].text="Bayfield County"
            obj.jurisdictionCounty.options[5].value="2994"
            obj.jurisdictionCounty.options[5].text="Brown County"
            obj.jurisdictionCounty.options[6].value="2995"
            obj.jurisdictionCounty.options[6].text="Buffalo County"
            obj.jurisdictionCounty.options[7].value="2996"
            obj.jurisdictionCounty.options[7].text="Burnett County"
            obj.jurisdictionCounty.options[8].value="2997"
            obj.jurisdictionCounty.options[8].text="Calumet County"
            obj.jurisdictionCounty.options[9].value="2998"
            obj.jurisdictionCounty.options[9].text="Chippewa County"
            obj.jurisdictionCounty.options[10].value="2999"
            obj.jurisdictionCounty.options[10].text="Clark County"
            obj.jurisdictionCounty.options[11].value="3000"
            obj.jurisdictionCounty.options[11].text="Columbia County"
            obj.jurisdictionCounty.options[12].value="3001"
            obj.jurisdictionCounty.options[12].text="Crawford County"
            obj.jurisdictionCounty.options[13].value="3002"
            obj.jurisdictionCounty.options[13].text="Dane County"
            obj.jurisdictionCounty.options[14].value="3003"
            obj.jurisdictionCounty.options[14].text="Dodge County"
            obj.jurisdictionCounty.options[15].value="3004"
            obj.jurisdictionCounty.options[15].text="Door County"
            obj.jurisdictionCounty.options[16].value="3005"
            obj.jurisdictionCounty.options[16].text="Douglas County"
            obj.jurisdictionCounty.options[17].value="3006"
            obj.jurisdictionCounty.options[17].text="Dunn County"
            obj.jurisdictionCounty.options[18].value="3007"
            obj.jurisdictionCounty.options[18].text="Eau Claire County"
            obj.jurisdictionCounty.options[19].value="3008"
            obj.jurisdictionCounty.options[19].text="Florence County"
            obj.jurisdictionCounty.options[20].value="3009"
            obj.jurisdictionCounty.options[20].text="Fond Du Lac County"
            obj.jurisdictionCounty.options[21].value="3010"
            obj.jurisdictionCounty.options[21].text="Forest County"
            obj.jurisdictionCounty.options[22].value="3011"
            obj.jurisdictionCounty.options[22].text="Grant County"
            obj.jurisdictionCounty.options[23].value="3012"
            obj.jurisdictionCounty.options[23].text="Green County"
            obj.jurisdictionCounty.options[24].value="3013"
            obj.jurisdictionCounty.options[24].text="Green Lake County"
            obj.jurisdictionCounty.options[25].value="3014"
            obj.jurisdictionCounty.options[25].text="Iowa County"
            obj.jurisdictionCounty.options[26].value="3015"
            obj.jurisdictionCounty.options[26].text="Iron County"
            obj.jurisdictionCounty.options[27].value="3016"
            obj.jurisdictionCounty.options[27].text="Jackson County"
            obj.jurisdictionCounty.options[28].value="3017"
            obj.jurisdictionCounty.options[28].text="Jefferson County"
            obj.jurisdictionCounty.options[29].value="3018"
            obj.jurisdictionCounty.options[29].text="Juneau County"
            obj.jurisdictionCounty.options[30].value="3020"
            obj.jurisdictionCounty.options[30].text="Keawaunee County"
            obj.jurisdictionCounty.options[31].value="3019"
            obj.jurisdictionCounty.options[31].text="Kenosha County"
            obj.jurisdictionCounty.options[32].value="3021"
            obj.jurisdictionCounty.options[32].text="La Crosse County"
            obj.jurisdictionCounty.options[33].value="3022"
            obj.jurisdictionCounty.options[33].text="Lafayette County"
            obj.jurisdictionCounty.options[34].value="3023"
            obj.jurisdictionCounty.options[34].text="Langlade County"
            obj.jurisdictionCounty.options[35].value="3024"
            obj.jurisdictionCounty.options[35].text="Lincoln County"
            obj.jurisdictionCounty.options[36].value="3025"
            obj.jurisdictionCounty.options[36].text="Manitowoc County"
            obj.jurisdictionCounty.options[37].value="3026"
            obj.jurisdictionCounty.options[37].text="Marathon County"
            obj.jurisdictionCounty.options[38].value="3027"
            obj.jurisdictionCounty.options[38].text="Marinette County"
            obj.jurisdictionCounty.options[39].value="3028"
            obj.jurisdictionCounty.options[39].text="Marquette County"
            obj.jurisdictionCounty.options[40].value="3029"
            obj.jurisdictionCounty.options[40].text="Menominee County"
            obj.jurisdictionCounty.options[41].value="3030"
            obj.jurisdictionCounty.options[41].text="Milwaukee County"
            obj.jurisdictionCounty.options[42].value="3031"
            obj.jurisdictionCounty.options[42].text="Monroe County"
            obj.jurisdictionCounty.options[43].value="3032"
            obj.jurisdictionCounty.options[43].text="Oconto County"
            obj.jurisdictionCounty.options[44].value="3033"
            obj.jurisdictionCounty.options[44].text="Oneida County"
            obj.jurisdictionCounty.options[45].value="3034"
            obj.jurisdictionCounty.options[45].text="Outagamie County"
            obj.jurisdictionCounty.options[46].value="3035"
            obj.jurisdictionCounty.options[46].text="Ozaukee County"
            obj.jurisdictionCounty.options[47].value="3036"
            obj.jurisdictionCounty.options[47].text="Pepin County"
            obj.jurisdictionCounty.options[48].value="3037"
            obj.jurisdictionCounty.options[48].text="Pierce County"
            obj.jurisdictionCounty.options[49].value="3038"
            obj.jurisdictionCounty.options[49].text="Polk County"
            obj.jurisdictionCounty.options[50].value="3039"
            obj.jurisdictionCounty.options[50].text="Portage County"
            obj.jurisdictionCounty.options[51].value="3040"
            obj.jurisdictionCounty.options[51].text="Price County"
            obj.jurisdictionCounty.options[52].value="3041"
            obj.jurisdictionCounty.options[52].text="Racine County"
            obj.jurisdictionCounty.options[53].value="3042"
            obj.jurisdictionCounty.options[53].text="Richland County"
            obj.jurisdictionCounty.options[54].value="3043"
            obj.jurisdictionCounty.options[54].text="Rock County"
            obj.jurisdictionCounty.options[55].value="3044"
            obj.jurisdictionCounty.options[55].text="Rusk County"
            obj.jurisdictionCounty.options[56].value="3045"
            obj.jurisdictionCounty.options[56].text="Saint Croix County"
            obj.jurisdictionCounty.options[57].value="3046"
            obj.jurisdictionCounty.options[57].text="Sauk County"
            obj.jurisdictionCounty.options[58].value="3047"
            obj.jurisdictionCounty.options[58].text="Sawyer County"
            obj.jurisdictionCounty.options[59].value="3048"
            obj.jurisdictionCounty.options[59].text="Shawano County"
            obj.jurisdictionCounty.options[60].value="3049"
            obj.jurisdictionCounty.options[60].text="Sheboygan County"
            obj.jurisdictionCounty.options[61].value="3050"
            obj.jurisdictionCounty.options[61].text="Taylor County"
            obj.jurisdictionCounty.options[62].value="3051"
            obj.jurisdictionCounty.options[62].text="Trempealeau County"
            obj.jurisdictionCounty.options[63].value="3052"
            obj.jurisdictionCounty.options[63].text="Vernon County"
            obj.jurisdictionCounty.options[64].value="3053"
            obj.jurisdictionCounty.options[64].text="Vilas County"
            obj.jurisdictionCounty.options[65].value="3054"
            obj.jurisdictionCounty.options[65].text="Walworth County"
            obj.jurisdictionCounty.options[66].value="3055"
            obj.jurisdictionCounty.options[66].text="Washburn County"
            obj.jurisdictionCounty.options[67].value="3056"
            obj.jurisdictionCounty.options[67].text="Washington County"
            obj.jurisdictionCounty.options[68].value="3057"
            obj.jurisdictionCounty.options[68].text="Waukesha County"
            obj.jurisdictionCounty.options[69].value="3058"
            obj.jurisdictionCounty.options[69].text="Waupaca County"
            obj.jurisdictionCounty.options[70].value="3059"
            obj.jurisdictionCounty.options[70].text="Waushara County"
            obj.jurisdictionCounty.options[71].value="3060"
            obj.jurisdictionCounty.options[71].text="Winnebago County"
            obj.jurisdictionCounty.options[72].value="3061"
            obj.jurisdictionCounty.options[72].text="Wood County" 
            break;

            
         
         	case 51:
			
             
            obj.jurisdictionCounty.length=24
			obj.jurisdictionCounty.options[0].value=""
            obj.jurisdictionCounty.options[0].text="Now Select the County"
			
            obj.jurisdictionCounty.options[1].value="3117"
            obj.jurisdictionCounty.options[1].text="Albany County"
            obj.jurisdictionCounty.options[2].value="3118"
            obj.jurisdictionCounty.options[2].text="Big Horn County"
            obj.jurisdictionCounty.options[3].value="3119"
            obj.jurisdictionCounty.options[3].text="Campbell County"
            obj.jurisdictionCounty.options[4].value="3120"
            obj.jurisdictionCounty.options[4].text="Carbon County"
            obj.jurisdictionCounty.options[5].value="3121"
            obj.jurisdictionCounty.options[5].text="Converse County"
            obj.jurisdictionCounty.options[6].value="3122"
            obj.jurisdictionCounty.options[6].text="Crook County"
            obj.jurisdictionCounty.options[7].value="3123"
            obj.jurisdictionCounty.options[7].text="Fremont County"
            obj.jurisdictionCounty.options[8].value="3124"
            obj.jurisdictionCounty.options[8].text="Goshen County"
            obj.jurisdictionCounty.options[9].value="3125"
            obj.jurisdictionCounty.options[9].text="Hot Springs County"
            obj.jurisdictionCounty.options[10].value="3126"
            obj.jurisdictionCounty.options[10].text="Johnson County"
            obj.jurisdictionCounty.options[11].value="3127"
            obj.jurisdictionCounty.options[11].text="Laramie County"
            obj.jurisdictionCounty.options[12].value="3128"
            obj.jurisdictionCounty.options[12].text="Lincoln County"
            obj.jurisdictionCounty.options[13].value="3129"
            obj.jurisdictionCounty.options[13].text="Natrona County"
            obj.jurisdictionCounty.options[14].value="3130"
            obj.jurisdictionCounty.options[14].text="Niobrara County"
            obj.jurisdictionCounty.options[15].value="3131"
            obj.jurisdictionCounty.options[15].text="Park County"
            obj.jurisdictionCounty.options[16].value="3168"
            obj.jurisdictionCounty.options[16].text="Platte County"
            obj.jurisdictionCounty.options[17].value="3132"
            obj.jurisdictionCounty.options[17].text="Sheridan County"
            obj.jurisdictionCounty.options[18].value="3133"
            obj.jurisdictionCounty.options[18].text="Sublette County"
            obj.jurisdictionCounty.options[19].value="3134"
            obj.jurisdictionCounty.options[19].text="Sweetwater County"
            obj.jurisdictionCounty.options[20].value="3135"
            obj.jurisdictionCounty.options[20].text="Teton County"
            obj.jurisdictionCounty.options[21].value="3136"
            obj.jurisdictionCounty.options[21].text="Uinta County"
            obj.jurisdictionCounty.options[22].value="3137"
            obj.jurisdictionCounty.options[22].text="Washakie County"
            obj.jurisdictionCounty.options[23].value="3138"
            obj.jurisdictionCounty.options[23].text="Weston County" 
            break;

            
          
         } 
}
