
function fillCategory(){ 
 // this function is used to fill the category list on load

addOption(document.drop_list.state_of_decedent, '', 'Select State');addOption(document.drop_list.state_of_decedent, 'alabama', 'Alabama');addOption(document.drop_list.state_of_decedent, 'alaska', 'Alaska');addOption(document.drop_list.state_of_decedent, 'americansamoa', 'American Samoa');addOption(document.drop_list.state_of_decedent, 'arizona', 'Arizona');addOption(document.drop_list.state_of_decedent, 'arkansas', 'Arkansas');addOption(document.drop_list.state_of_decedent, 'california', 'California');addOption(document.drop_list.state_of_decedent, 'colorado', 'Colorado');addOption(document.drop_list.state_of_decedent, 'connecticut', 'Connecticut');addOption(document.drop_list.state_of_decedent, 'delaware', 'Delaware');addOption(document.drop_list.state_of_decedent, 'districtofcolumbia', 'District of Columbia');addOption(document.drop_list.state_of_decedent, 'florida', 'Florida');addOption(document.drop_list.state_of_decedent, 'georgia', 'Georgia');addOption(document.drop_list.state_of_decedent, 'guam', 'Guam');addOption(document.drop_list.state_of_decedent, 'hawaii', 'Hawaii');addOption(document.drop_list.state_of_decedent, 'idaho', 'Idaho');addOption(document.drop_list.state_of_decedent, 'illinois', 'Illinois');addOption(document.drop_list.state_of_decedent, 'indiana', 'Indiana');addOption(document.drop_list.state_of_decedent, 'iowa', 'Iowa');addOption(document.drop_list.state_of_decedent, 'kansas', 'Kansas');addOption(document.drop_list.state_of_decedent, 'kentucky', 'Kentucky');addOption(document.drop_list.state_of_decedent, 'louisiana', 'Louisiana');addOption(document.drop_list.state_of_decedent, 'maine', 'Maine');addOption(document.drop_list.state_of_decedent, 'maryland', 'Maryland');addOption(document.drop_list.state_of_decedent, 'massachusetts', 'Massachusetts');addOption(document.drop_list.state_of_decedent, 'michigan', 'Michigan');addOption(document.drop_list.state_of_decedent, 'minnesota', 'Minnesota');addOption(document.drop_list.state_of_decedent, 'mississippi', 'Mississippi');addOption(document.drop_list.state_of_decedent, 'missouri', 'Missouri');addOption(document.drop_list.state_of_decedent, 'montana', 'Montana');addOption(document.drop_list.state_of_decedent, 'nebraska', 'Nebraska');addOption(document.drop_list.state_of_decedent, 'nevada', 'Nevada');addOption(document.drop_list.state_of_decedent, 'newhampshire', 'New Hampshire');addOption(document.drop_list.state_of_decedent, 'newjersey', 'New Jersey');addOption(document.drop_list.state_of_decedent, 'newmexico', 'New Mexico');addOption(document.drop_list.state_of_decedent, 'newyork', 'New York');addOption(document.drop_list.state_of_decedent, 'northcarolina', 'North Carolina');addOption(document.drop_list.state_of_decedent, 'northdakota', 'North Dakota');addOption(document.drop_list.state_of_decedent, 'northernmarianaislands', 'Northern Mariana Islands');addOption(document.drop_list.state_of_decedent, 'ohio', 'Ohio');addOption(document.drop_list.state_of_decedent, 'oklahoma', 'Oklahoma');addOption(document.drop_list.state_of_decedent, 'oregon', 'Oregon');addOption(document.drop_list.state_of_decedent, 'palau', 'Palau');addOption(document.drop_list.state_of_decedent, 'pennsylvania', 'Pennsylvania');addOption(document.drop_list.state_of_decedent, 'puertorico', 'Puerto Rico');addOption(document.drop_list.state_of_decedent, 'rhodeisland', 'Rhode Island');addOption(document.drop_list.state_of_decedent, 'southcarolina', 'South Carolina');addOption(document.drop_list.state_of_decedent, 'southdakota', 'South Dakota');addOption(document.drop_list.state_of_decedent, 'statename', 'StateName');addOption(document.drop_list.state_of_decedent, 'tennessee', 'Tennessee');addOption(document.drop_list.state_of_decedent, 'texas', 'Texas');addOption(document.drop_list.state_of_decedent, 'utah', 'Utah');addOption(document.drop_list.state_of_decedent, 'vermont', 'Vermont');addOption(document.drop_list.state_of_decedent, 'virginislands', 'Virgin Islands');addOption(document.drop_list.state_of_decedent, 'virginia', 'Virginia');addOption(document.drop_list.state_of_decedent, 'washington', 'Washington');addOption(document.drop_list.state_of_decedent, 'westvirginia', 'West Virginia');addOption(document.drop_list.state_of_decedent, 'wisconsin', 'Wisconsin');addOption(document.drop_list.state_of_decedent, 'wyoming', 'Wyoming');} // end of JS function

function SelectSubCat(){
// ON or after selection of category this function will work

removeAllOptions(document.drop_list.county_of_decedent);
addOption(document.drop_list.county_of_decedent, "", "Select County", "");

// Collect all element of subcategory for various cat_id 

if(document.drop_list.state_of_decedent.value == 'alabama'){addOption(document.drop_list.county_of_decedent,'Autauga', 'Autauga');addOption(document.drop_list.county_of_decedent,'Baldwin', 'Baldwin');addOption(document.drop_list.county_of_decedent,'Barbour', 'Barbour');addOption(document.drop_list.county_of_decedent,'Bibb', 'Bibb');addOption(document.drop_list.county_of_decedent,'Blount', 'Blount');addOption(document.drop_list.county_of_decedent,'Bullock', 'Bullock');addOption(document.drop_list.county_of_decedent,'Butler', 'Butler');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Chambers', 'Chambers');addOption(document.drop_list.county_of_decedent,'Cherokee', 'Cherokee');addOption(document.drop_list.county_of_decedent,'Chilton', 'Chilton');addOption(document.drop_list.county_of_decedent,'Choctaw', 'Choctaw');addOption(document.drop_list.county_of_decedent,'Clarke', 'Clarke');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Cleburne', 'Cleburne');addOption(document.drop_list.county_of_decedent,'Coffee', 'Coffee');addOption(document.drop_list.county_of_decedent,'Colbert', 'Colbert');addOption(document.drop_list.county_of_decedent,'Conecuh', 'Conecuh');addOption(document.drop_list.county_of_decedent,'Coosa', 'Coosa');addOption(document.drop_list.county_of_decedent,'Covington', 'Covington');addOption(document.drop_list.county_of_decedent,'Crenshaw', 'Crenshaw');addOption(document.drop_list.county_of_decedent,'Cullman', 'Cullman');addOption(document.drop_list.county_of_decedent,'Dale', 'Dale');addOption(document.drop_list.county_of_decedent,'Dallas', 'Dallas');addOption(document.drop_list.county_of_decedent,'De Kalb', 'De Kalb');addOption(document.drop_list.county_of_decedent,'Elmore', 'Elmore');addOption(document.drop_list.county_of_decedent,'Escambia', 'Escambia');addOption(document.drop_list.county_of_decedent,'Etowah', 'Etowah');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Geneva', 'Geneva');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Hale', 'Hale');addOption(document.drop_list.county_of_decedent,'Henry', 'Henry');addOption(document.drop_list.county_of_decedent,'Houston', 'Houston');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Lamar', 'Lamar');addOption(document.drop_list.county_of_decedent,'Lauderdale', 'Lauderdale');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Limestone', 'Limestone');addOption(document.drop_list.county_of_decedent,'Lowndes', 'Lowndes');addOption(document.drop_list.county_of_decedent,'Macon', 'Macon');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Marengo', 'Marengo');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'Mobile', 'Mobile');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'Perry', 'Perry');addOption(document.drop_list.county_of_decedent,'Pickens', 'Pickens');addOption(document.drop_list.county_of_decedent,'Pike', 'Pike');addOption(document.drop_list.county_of_decedent,'Randolph', 'Randolph');addOption(document.drop_list.county_of_decedent,'Russell', 'Russell');addOption(document.drop_list.county_of_decedent,'Saint Clair', 'Saint Clair');addOption(document.drop_list.county_of_decedent,'Shelby', 'Shelby');addOption(document.drop_list.county_of_decedent,'Sumter', 'Sumter');addOption(document.drop_list.county_of_decedent,'Talladega', 'Talladega');addOption(document.drop_list.county_of_decedent,'Tallapoosa', 'Tallapoosa');addOption(document.drop_list.county_of_decedent,'Tuscaloosa', 'Tuscaloosa');addOption(document.drop_list.county_of_decedent,'Walker', 'Walker');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wilcox', 'Wilcox');addOption(document.drop_list.county_of_decedent,'Winston', 'Winston');}if(document.drop_list.state_of_decedent.value == 'alaska'){addOption(document.drop_list.county_of_decedent,'Aleutians East', 'Aleutians East');addOption(document.drop_list.county_of_decedent,'Aleutians West', 'Aleutians West');addOption(document.drop_list.county_of_decedent,'Anchorage', 'Anchorage');addOption(document.drop_list.county_of_decedent,'Bethel', 'Bethel');addOption(document.drop_list.county_of_decedent,'Bristol Bay', 'Bristol Bay');addOption(document.drop_list.county_of_decedent,'Denali', 'Denali');addOption(document.drop_list.county_of_decedent,'Dillingham', 'Dillingham');addOption(document.drop_list.county_of_decedent,'Fairbanks North Star', 'Fairbanks North Star');addOption(document.drop_list.county_of_decedent,'Haines', 'Haines');addOption(document.drop_list.county_of_decedent,'Juneau', 'Juneau');addOption(document.drop_list.county_of_decedent,'Kenai Peninsula', 'Kenai Peninsula');addOption(document.drop_list.county_of_decedent,'Ketchikan Gateway', 'Ketchikan Gateway');addOption(document.drop_list.county_of_decedent,'Kodiak Island', 'Kodiak Island');addOption(document.drop_list.county_of_decedent,'Lake and Peninsula', 'Lake and Peninsula');addOption(document.drop_list.county_of_decedent,'Matanuska Susitna', 'Matanuska Susitna');addOption(document.drop_list.county_of_decedent,'Nome', 'Nome');addOption(document.drop_list.county_of_decedent,'North Slope', 'North Slope');addOption(document.drop_list.county_of_decedent,'Northwest Arctic', 'Northwest Arctic');addOption(document.drop_list.county_of_decedent,'Prince Wales Ketchikan', 'Prince Wales Ketchikan');addOption(document.drop_list.county_of_decedent,'Sitka', 'Sitka');addOption(document.drop_list.county_of_decedent,'Skagway Hoonah Angoon', 'Skagway Hoonah Angoon');addOption(document.drop_list.county_of_decedent,'Southeast Fairbanks', 'Southeast Fairbanks');addOption(document.drop_list.county_of_decedent,'Valdez Cordova', 'Valdez Cordova');addOption(document.drop_list.county_of_decedent,'Wade Hampton', 'Wade Hampton');addOption(document.drop_list.county_of_decedent,'Wrangell Petersburg', 'Wrangell Petersburg');addOption(document.drop_list.county_of_decedent,'Yakutat', 'Yakutat');addOption(document.drop_list.county_of_decedent,'Yukon Koyukuk', 'Yukon Koyukuk');}if(document.drop_list.state_of_decedent.value == 'americansamoa'){addOption(document.drop_list.county_of_decedent,'American Samoa', 'American Samoa');}if(document.drop_list.state_of_decedent.value == 'arizona'){addOption(document.drop_list.county_of_decedent,'Apache', 'Apache');addOption(document.drop_list.county_of_decedent,'Cochise', 'Cochise');addOption(document.drop_list.county_of_decedent,'Coconino', 'Coconino');addOption(document.drop_list.county_of_decedent,'Gila', 'Gila');addOption(document.drop_list.county_of_decedent,'Graham', 'Graham');addOption(document.drop_list.county_of_decedent,'Greenlee', 'Greenlee');addOption(document.drop_list.county_of_decedent,'La Paz', 'La Paz');addOption(document.drop_list.county_of_decedent,'Maricopa', 'Maricopa');addOption(document.drop_list.county_of_decedent,'Mohave', 'Mohave');addOption(document.drop_list.county_of_decedent,'Navajo', 'Navajo');addOption(document.drop_list.county_of_decedent,'Pima', 'Pima');addOption(document.drop_list.county_of_decedent,'Pinal', 'Pinal');addOption(document.drop_list.county_of_decedent,'Santa Cruz', 'Santa Cruz');addOption(document.drop_list.county_of_decedent,'Yavapai', 'Yavapai');addOption(document.drop_list.county_of_decedent,'Yuma', 'Yuma');}if(document.drop_list.state_of_decedent.value == 'arkansas'){addOption(document.drop_list.county_of_decedent,'Arkansas', 'Arkansas');addOption(document.drop_list.county_of_decedent,'Ashley', 'Ashley');addOption(document.drop_list.county_of_decedent,'Baxter', 'Baxter');addOption(document.drop_list.county_of_decedent,'Benton', 'Benton');addOption(document.drop_list.county_of_decedent,'Boone', 'Boone');addOption(document.drop_list.county_of_decedent,'Bradley', 'Bradley');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Chicot', 'Chicot');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Cleburne', 'Cleburne');addOption(document.drop_list.county_of_decedent,'Cleveland', 'Cleveland');addOption(document.drop_list.county_of_decedent,'Columbia', 'Columbia');addOption(document.drop_list.county_of_decedent,'Conway', 'Conway');addOption(document.drop_list.county_of_decedent,'Craighead', 'Craighead');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Crittenden', 'Crittenden');addOption(document.drop_list.county_of_decedent,'Cross', 'Cross');addOption(document.drop_list.county_of_decedent,'Dallas', 'Dallas');addOption(document.drop_list.county_of_decedent,'Desha', 'Desha');addOption(document.drop_list.county_of_decedent,'Drew', 'Drew');addOption(document.drop_list.county_of_decedent,'Faulkner', 'Faulkner');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Fulton', 'Fulton');addOption(document.drop_list.county_of_decedent,'Garland', 'Garland');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Hempstead', 'Hempstead');addOption(document.drop_list.county_of_decedent,'Hot Spring', 'Hot Spring');addOption(document.drop_list.county_of_decedent,'Howard', 'Howard');addOption(document.drop_list.county_of_decedent,'Independence', 'Independence');addOption(document.drop_list.county_of_decedent,'Izard', 'Izard');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Lafayette', 'Lafayette');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Little River', 'Little River');addOption(document.drop_list.county_of_decedent,'Logan', 'Logan');addOption(document.drop_list.county_of_decedent,'Lonoke', 'Lonoke');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Miller', 'Miller');addOption(document.drop_list.county_of_decedent,'Mississippi', 'Mississippi');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Nevada', 'Nevada');addOption(document.drop_list.county_of_decedent,'Newton', 'Newton');addOption(document.drop_list.county_of_decedent,'Ouachita', 'Ouachita');addOption(document.drop_list.county_of_decedent,'Perry', 'Perry');addOption(document.drop_list.county_of_decedent,'Phillips', 'Phillips');addOption(document.drop_list.county_of_decedent,'Pike', 'Pike');addOption(document.drop_list.county_of_decedent,'Poinsett', 'Poinsett');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Pope', 'Pope');addOption(document.drop_list.county_of_decedent,'Prairie', 'Prairie');addOption(document.drop_list.county_of_decedent,'Pulaski', 'Pulaski');addOption(document.drop_list.county_of_decedent,'Randolph', 'Randolph');addOption(document.drop_list.county_of_decedent,'Saint Francis', 'Saint Francis');addOption(document.drop_list.county_of_decedent,'Saline', 'Saline');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Searcy', 'Searcy');addOption(document.drop_list.county_of_decedent,'Sebastian', 'Sebastian');addOption(document.drop_list.county_of_decedent,'Sevier', 'Sevier');addOption(document.drop_list.county_of_decedent,'Sharp', 'Sharp');addOption(document.drop_list.county_of_decedent,'Stone', 'Stone');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Van Buren', 'Van Buren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'White', 'White');addOption(document.drop_list.county_of_decedent,'Woodruff', 'Woodruff');addOption(document.drop_list.county_of_decedent,'Yell', 'Yell');}if(document.drop_list.state_of_decedent.value == 'colorado'){addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Alamosa', 'Alamosa');addOption(document.drop_list.county_of_decedent,'Arapahoe', 'Arapahoe');addOption(document.drop_list.county_of_decedent,'Archuleta', 'Archuleta');addOption(document.drop_list.county_of_decedent,'Baca', 'Baca');addOption(document.drop_list.county_of_decedent,'Bent', 'Bent');addOption(document.drop_list.county_of_decedent,'Boulder', 'Boulder');addOption(document.drop_list.county_of_decedent,'Broomfield', 'Broomfield');addOption(document.drop_list.county_of_decedent,'Chaffee', 'Chaffee');addOption(document.drop_list.county_of_decedent,'Cheyenne', 'Cheyenne');addOption(document.drop_list.county_of_decedent,'Clear Creek', 'Clear Creek');addOption(document.drop_list.county_of_decedent,'Conejos', 'Conejos');addOption(document.drop_list.county_of_decedent,'Costilla', 'Costilla');addOption(document.drop_list.county_of_decedent,'Crowley', 'Crowley');addOption(document.drop_list.county_of_decedent,'Custer', 'Custer');addOption(document.drop_list.county_of_decedent,'Delta', 'Delta');addOption(document.drop_list.county_of_decedent,'Denver', 'Denver');addOption(document.drop_list.county_of_decedent,'Dolores', 'Dolores');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Eagle', 'Eagle');addOption(document.drop_list.county_of_decedent,'El Paso', 'El Paso');addOption(document.drop_list.county_of_decedent,'Elbert', 'Elbert');addOption(document.drop_list.county_of_decedent,'Fremont', 'Fremont');addOption(document.drop_list.county_of_decedent,'Garfield', 'Garfield');addOption(document.drop_list.county_of_decedent,'Gilpin', 'Gilpin');addOption(document.drop_list.county_of_decedent,'Grand', 'Grand');addOption(document.drop_list.county_of_decedent,'Gunnison', 'Gunnison');addOption(document.drop_list.county_of_decedent,'Hinsdale', 'Hinsdale');addOption(document.drop_list.county_of_decedent,'Huerfano', 'Huerfano');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Kiowa', 'Kiowa');addOption(document.drop_list.county_of_decedent,'Kit Carson', 'Kit Carson');addOption(document.drop_list.county_of_decedent,'La Plata', 'La Plata');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Larimer', 'Larimer');addOption(document.drop_list.county_of_decedent,'Las Animas', 'Las Animas');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Logan', 'Logan');addOption(document.drop_list.county_of_decedent,'Mesa', 'Mesa');addOption(document.drop_list.county_of_decedent,'Mineral', 'Mineral');addOption(document.drop_list.county_of_decedent,'Moffat', 'Moffat');addOption(document.drop_list.county_of_decedent,'Montezuma', 'Montezuma');addOption(document.drop_list.county_of_decedent,'Montrose', 'Montrose');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'Otero', 'Otero');addOption(document.drop_list.county_of_decedent,'Ouray', 'Ouray');addOption(document.drop_list.county_of_decedent,'Park', 'Park');addOption(document.drop_list.county_of_decedent,'Phillips', 'Phillips');addOption(document.drop_list.county_of_decedent,'Pitkin', 'Pitkin');addOption(document.drop_list.county_of_decedent,'Prowers', 'Prowers');addOption(document.drop_list.county_of_decedent,'Pueblo', 'Pueblo');addOption(document.drop_list.county_of_decedent,'Rio Blanco', 'Rio Blanco');addOption(document.drop_list.county_of_decedent,'Rio Grande', 'Rio Grande');addOption(document.drop_list.county_of_decedent,'Routt', 'Routt');addOption(document.drop_list.county_of_decedent,'Saguache', 'Saguache');addOption(document.drop_list.county_of_decedent,'San Juan', 'San Juan');addOption(document.drop_list.county_of_decedent,'San Miguel', 'San Miguel');addOption(document.drop_list.county_of_decedent,'Sedgwick', 'Sedgwick');addOption(document.drop_list.county_of_decedent,'Summit', 'Summit');addOption(document.drop_list.county_of_decedent,'Teller', 'Teller');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Weld', 'Weld');addOption(document.drop_list.county_of_decedent,'Yuma', 'Yuma');}if(document.drop_list.state_of_decedent.value == 'connecticut'){addOption(document.drop_list.county_of_decedent,'Fairfield', 'Fairfield');addOption(document.drop_list.county_of_decedent,'Hartford', 'Hartford');addOption(document.drop_list.county_of_decedent,'Litchfield', 'Litchfield');addOption(document.drop_list.county_of_decedent,'Middlesex', 'Middlesex');addOption(document.drop_list.county_of_decedent,'New Haven', 'New Haven');addOption(document.drop_list.county_of_decedent,'New London', 'New London');addOption(document.drop_list.county_of_decedent,'Tolland', 'Tolland');addOption(document.drop_list.county_of_decedent,'Windham', 'Windham');}if(document.drop_list.state_of_decedent.value == 'delaware'){addOption(document.drop_list.county_of_decedent,'Kent', 'Kent');addOption(document.drop_list.county_of_decedent,'New Castle', 'New Castle');addOption(document.drop_list.county_of_decedent,'Sussex', 'Sussex');}if(document.drop_list.state_of_decedent.value == 'districtofcolumbia'){addOption(document.drop_list.county_of_decedent,'District of Columbia', 'District of Columbia');}if(document.drop_list.state_of_decedent.value == 'florida'){addOption(document.drop_list.county_of_decedent,'Alachua', 'Alachua');addOption(document.drop_list.county_of_decedent,'Baker', 'Baker');addOption(document.drop_list.county_of_decedent,'Bay', 'Bay');addOption(document.drop_list.county_of_decedent,'Bradford', 'Bradford');addOption(document.drop_list.county_of_decedent,'Brevard', 'Brevard');addOption(document.drop_list.county_of_decedent,'Broward', 'Broward');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Charlotte', 'Charlotte');addOption(document.drop_list.county_of_decedent,'Citrus', 'Citrus');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Collier', 'Collier');addOption(document.drop_list.county_of_decedent,'Columbia', 'Columbia');addOption(document.drop_list.county_of_decedent,'De Soto', 'De Soto');addOption(document.drop_list.county_of_decedent,'Dixie', 'Dixie');addOption(document.drop_list.county_of_decedent,'Duval', 'Duval');addOption(document.drop_list.county_of_decedent,'Escambia', 'Escambia');addOption(document.drop_list.county_of_decedent,'Flagler', 'Flagler');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Gadsden', 'Gadsden');addOption(document.drop_list.county_of_decedent,'Gilchrist', 'Gilchrist');addOption(document.drop_list.county_of_decedent,'Glades', 'Glades');addOption(document.drop_list.county_of_decedent,'Gulf', 'Gulf');addOption(document.drop_list.county_of_decedent,'Hamilton', 'Hamilton');addOption(document.drop_list.county_of_decedent,'Hardee', 'Hardee');addOption(document.drop_list.county_of_decedent,'Hendry', 'Hendry');addOption(document.drop_list.county_of_decedent,'Hernando', 'Hernando');addOption(document.drop_list.county_of_decedent,'Highlands', 'Highlands');addOption(document.drop_list.county_of_decedent,'Hillsborough', 'Hillsborough');addOption(document.drop_list.county_of_decedent,'Holmes', 'Holmes');addOption(document.drop_list.county_of_decedent,'Indian River', 'Indian River');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Lafayette', 'Lafayette');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Leon', 'Leon');addOption(document.drop_list.county_of_decedent,'Levy', 'Levy');addOption(document.drop_list.county_of_decedent,'Liberty', 'Liberty');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Manatee', 'Manatee');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Martin', 'Martin');addOption(document.drop_list.county_of_decedent,'Miami-Dade', 'Miami-Dade');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Nassau', 'Nassau');addOption(document.drop_list.county_of_decedent,'Okaloosa', 'Okaloosa');addOption(document.drop_list.county_of_decedent,'Okeechobee', 'Okeechobee');addOption(document.drop_list.county_of_decedent,'Orange', 'Orange');addOption(document.drop_list.county_of_decedent,'Osceola', 'Osceola');addOption(document.drop_list.county_of_decedent,'Palm Beach', 'Palm Beach');addOption(document.drop_list.county_of_decedent,'Pasco', 'Pasco');addOption(document.drop_list.county_of_decedent,'Pinellas', 'Pinellas');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Putnam', 'Putnam');addOption(document.drop_list.county_of_decedent,'Saint Johns', 'Saint Johns');addOption(document.drop_list.county_of_decedent,'Saint Lucie', 'Saint Lucie');addOption(document.drop_list.county_of_decedent,'Santa Rosa', 'Santa Rosa');addOption(document.drop_list.county_of_decedent,'Sarasota', 'Sarasota');addOption(document.drop_list.county_of_decedent,'Seminole', 'Seminole');addOption(document.drop_list.county_of_decedent,'Sumter', 'Sumter');addOption(document.drop_list.county_of_decedent,'Suwannee', 'Suwannee');addOption(document.drop_list.county_of_decedent,'Taylor', 'Taylor');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Volusia', 'Volusia');addOption(document.drop_list.county_of_decedent,'Wakulla', 'Wakulla');addOption(document.drop_list.county_of_decedent,'Walton', 'Walton');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');}if(document.drop_list.state_of_decedent.value == 'georgia'){addOption(document.drop_list.county_of_decedent,'Appling', 'Appling');addOption(document.drop_list.county_of_decedent,'Atkinson', 'Atkinson');addOption(document.drop_list.county_of_decedent,'Bacon', 'Bacon');addOption(document.drop_list.county_of_decedent,'Baker', 'Baker');addOption(document.drop_list.county_of_decedent,'Baldwin', 'Baldwin');addOption(document.drop_list.county_of_decedent,'Banks', 'Banks');addOption(document.drop_list.county_of_decedent,'Barrow', 'Barrow');addOption(document.drop_list.county_of_decedent,'Bartow', 'Bartow');addOption(document.drop_list.county_of_decedent,'Ben Hill', 'Ben Hill');addOption(document.drop_list.county_of_decedent,'Berrien', 'Berrien');addOption(document.drop_list.county_of_decedent,'Bibb', 'Bibb');addOption(document.drop_list.county_of_decedent,'Bleckley', 'Bleckley');addOption(document.drop_list.county_of_decedent,'Brantley', 'Brantley');addOption(document.drop_list.county_of_decedent,'Brooks', 'Brooks');addOption(document.drop_list.county_of_decedent,'Bryan', 'Bryan');addOption(document.drop_list.county_of_decedent,'Bulloch', 'Bulloch');addOption(document.drop_list.county_of_decedent,'Burke', 'Burke');addOption(document.drop_list.county_of_decedent,'Butts', 'Butts');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Camden', 'Camden');addOption(document.drop_list.county_of_decedent,'Candler', 'Candler');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Catoosa', 'Catoosa');addOption(document.drop_list.county_of_decedent,'Charlton', 'Charlton');addOption(document.drop_list.county_of_decedent,'Chatham', 'Chatham');addOption(document.drop_list.county_of_decedent,'Chattahoochee', 'Chattahoochee');addOption(document.drop_list.county_of_decedent,'Chattooga', 'Chattooga');addOption(document.drop_list.county_of_decedent,'Cherokee', 'Cherokee');addOption(document.drop_list.county_of_decedent,'Clarke', 'Clarke');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Clayton', 'Clayton');addOption(document.drop_list.county_of_decedent,'Clinch', 'Clinch');addOption(document.drop_list.county_of_decedent,'Cobb', 'Cobb');addOption(document.drop_list.county_of_decedent,'Coffee', 'Coffee');addOption(document.drop_list.county_of_decedent,'Colquitt', 'Colquitt');addOption(document.drop_list.county_of_decedent,'Columbia', 'Columbia');addOption(document.drop_list.county_of_decedent,'Cook', 'Cook');addOption(document.drop_list.county_of_decedent,'Coweta', 'Coweta');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Crisp', 'Crisp');addOption(document.drop_list.county_of_decedent,'Dade', 'Dade');addOption(document.drop_list.county_of_decedent,'Dawson', 'Dawson');addOption(document.drop_list.county_of_decedent,'Decatur', 'Decatur');addOption(document.drop_list.county_of_decedent,'Dekalb', 'Dekalb');addOption(document.drop_list.county_of_decedent,'Dodge', 'Dodge');addOption(document.drop_list.county_of_decedent,'Dooly', 'Dooly');addOption(document.drop_list.county_of_decedent,'Dougherty', 'Dougherty');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Early', 'Early');addOption(document.drop_list.county_of_decedent,'Echols', 'Echols');addOption(document.drop_list.county_of_decedent,'Effingham', 'Effingham');addOption(document.drop_list.county_of_decedent,'Elbert', 'Elbert');addOption(document.drop_list.county_of_decedent,'Emanuel', 'Emanuel');addOption(document.drop_list.county_of_decedent,'Evans', 'Evans');addOption(document.drop_list.county_of_decedent,'Fannin', 'Fannin');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Floyd', 'Floyd');addOption(document.drop_list.county_of_decedent,'Forsyth', 'Forsyth');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Fulton', 'Fulton');addOption(document.drop_list.county_of_decedent,'Gilmer', 'Gilmer');addOption(document.drop_list.county_of_decedent,'Glascock', 'Glascock');addOption(document.drop_list.county_of_decedent,'Glynn', 'Glynn');addOption(document.drop_list.county_of_decedent,'Gordon', 'Gordon');addOption(document.drop_list.county_of_decedent,'Grady', 'Grady');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Gwinnett', 'Gwinnett');addOption(document.drop_list.county_of_decedent,'Habersham', 'Habersham');addOption(document.drop_list.county_of_decedent,'Hall', 'Hall');addOption(document.drop_list.county_of_decedent,'Hancock', 'Hancock');addOption(document.drop_list.county_of_decedent,'Haralson', 'Haralson');addOption(document.drop_list.county_of_decedent,'Harris', 'Harris');addOption(document.drop_list.county_of_decedent,'Hart', 'Hart');addOption(document.drop_list.county_of_decedent,'Heard', 'Heard');addOption(document.drop_list.county_of_decedent,'Henry', 'Henry');addOption(document.drop_list.county_of_decedent,'Houston', 'Houston');addOption(document.drop_list.county_of_decedent,'Irwin', 'Irwin');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jasper', 'Jasper');addOption(document.drop_list.county_of_decedent,'Jeff Davis', 'Jeff Davis');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Jenkins', 'Jenkins');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Jones', 'Jones');addOption(document.drop_list.county_of_decedent,'Lamar', 'Lamar');addOption(document.drop_list.county_of_decedent,'Lanier', 'Lanier');addOption(document.drop_list.county_of_decedent,'Laurens', 'Laurens');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Liberty', 'Liberty');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Long', 'Long');addOption(document.drop_list.county_of_decedent,'Lowndes', 'Lowndes');addOption(document.drop_list.county_of_decedent,'Lumpkin', 'Lumpkin');addOption(document.drop_list.county_of_decedent,'Macon', 'Macon');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'McDuffie', 'McDuffie');addOption(document.drop_list.county_of_decedent,'McIntosh', 'McIntosh');addOption(document.drop_list.county_of_decedent,'Meriwether', 'Meriwether');addOption(document.drop_list.county_of_decedent,'Miller', 'Miller');addOption(document.drop_list.county_of_decedent,'Mitchell', 'Mitchell');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'Murray', 'Murray');addOption(document.drop_list.county_of_decedent,'Muscogee', 'Muscogee');addOption(document.drop_list.county_of_decedent,'Newton', 'Newton');addOption(document.drop_list.county_of_decedent,'Oconee', 'Oconee');addOption(document.drop_list.county_of_decedent,'Oglethorpe', 'Oglethorpe');addOption(document.drop_list.county_of_decedent,'Paulding', 'Paulding');addOption(document.drop_list.county_of_decedent,'Peach', 'Peach');addOption(document.drop_list.county_of_decedent,'Pickens', 'Pickens');addOption(document.drop_list.county_of_decedent,'Pierce', 'Pierce');addOption(document.drop_list.county_of_decedent,'Pike', 'Pike');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Pulaski', 'Pulaski');addOption(document.drop_list.county_of_decedent,'Putnam', 'Putnam');addOption(document.drop_list.county_of_decedent,'Quitman', 'Quitman');addOption(document.drop_list.county_of_decedent,'Rabun', 'Rabun');addOption(document.drop_list.county_of_decedent,'Randolph', 'Randolph');addOption(document.drop_list.county_of_decedent,'Richmond', 'Richmond');addOption(document.drop_list.county_of_decedent,'Rockdale', 'Rockdale');addOption(document.drop_list.county_of_decedent,'Schley', 'Schley');addOption(document.drop_list.county_of_decedent,'Screven', 'Screven');addOption(document.drop_list.county_of_decedent,'Seminole', 'Seminole');addOption(document.drop_list.county_of_decedent,'Spalding', 'Spalding');addOption(document.drop_list.county_of_decedent,'Stephens', 'Stephens');addOption(document.drop_list.county_of_decedent,'Stewart', 'Stewart');addOption(document.drop_list.county_of_decedent,'Sumter', 'Sumter');addOption(document.drop_list.county_of_decedent,'Talbot', 'Talbot');addOption(document.drop_list.county_of_decedent,'Taliaferro', 'Taliaferro');addOption(document.drop_list.county_of_decedent,'Tattnall', 'Tattnall');addOption(document.drop_list.county_of_decedent,'Taylor', 'Taylor');addOption(document.drop_list.county_of_decedent,'Telfair', 'Telfair');addOption(document.drop_list.county_of_decedent,'Terrell', 'Terrell');addOption(document.drop_list.county_of_decedent,'Thomas', 'Thomas');addOption(document.drop_list.county_of_decedent,'Tift', 'Tift');addOption(document.drop_list.county_of_decedent,'Toombs', 'Toombs');addOption(document.drop_list.county_of_decedent,'Towns', 'Towns');addOption(document.drop_list.county_of_decedent,'Treutlen', 'Treutlen');addOption(document.drop_list.county_of_decedent,'Troup', 'Troup');addOption(document.drop_list.county_of_decedent,'Turner', 'Turner');addOption(document.drop_list.county_of_decedent,'Twiggs', 'Twiggs');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Upson', 'Upson');addOption(document.drop_list.county_of_decedent,'Walker', 'Walker');addOption(document.drop_list.county_of_decedent,'Walton', 'Walton');addOption(document.drop_list.county_of_decedent,'Ware', 'Ware');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Webster', 'Webster');addOption(document.drop_list.county_of_decedent,'Wheeler', 'Wheeler');addOption(document.drop_list.county_of_decedent,'White', 'White');addOption(document.drop_list.county_of_decedent,'Whitfield', 'Whitfield');addOption(document.drop_list.county_of_decedent,'Wilcox', 'Wilcox');addOption(document.drop_list.county_of_decedent,'Wilkes', 'Wilkes');addOption(document.drop_list.county_of_decedent,'Wilkinson', 'Wilkinson');addOption(document.drop_list.county_of_decedent,'Worth', 'Worth');}if(document.drop_list.state_of_decedent.value == 'guam'){addOption(document.drop_list.county_of_decedent,'Guam', 'Guam');}if(document.drop_list.state_of_decedent.value == 'hawaii'){addOption(document.drop_list.county_of_decedent,'Hawaii', 'Hawaii');addOption(document.drop_list.county_of_decedent,'Honolulu', 'Honolulu');addOption(document.drop_list.county_of_decedent,'Kauai', 'Kauai');addOption(document.drop_list.county_of_decedent,'Maui', 'Maui');}if(document.drop_list.state_of_decedent.value == 'idaho'){addOption(document.drop_list.county_of_decedent,'Ada', 'Ada');addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Bannock', 'Bannock');addOption(document.drop_list.county_of_decedent,'Bear Lake', 'Bear Lake');addOption(document.drop_list.county_of_decedent,'Benewah', 'Benewah');addOption(document.drop_list.county_of_decedent,'Bingham', 'Bingham');addOption(document.drop_list.county_of_decedent,'Blaine', 'Blaine');addOption(document.drop_list.county_of_decedent,'Boise', 'Boise');addOption(document.drop_list.county_of_decedent,'Bonner', 'Bonner');addOption(document.drop_list.county_of_decedent,'Bonneville', 'Bonneville');addOption(document.drop_list.county_of_decedent,'Boundary', 'Boundary');addOption(document.drop_list.county_of_decedent,'Butte', 'Butte');addOption(document.drop_list.county_of_decedent,'Camas', 'Camas');addOption(document.drop_list.county_of_decedent,'Canyon', 'Canyon');addOption(document.drop_list.county_of_decedent,'Caribou', 'Caribou');addOption(document.drop_list.county_of_decedent,'Cassia', 'Cassia');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Clearwater', 'Clearwater');addOption(document.drop_list.county_of_decedent,'Custer', 'Custer');addOption(document.drop_list.county_of_decedent,'Elmore', 'Elmore');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Fremont', 'Fremont');addOption(document.drop_list.county_of_decedent,'Gem', 'Gem');addOption(document.drop_list.county_of_decedent,'Gooding', 'Gooding');addOption(document.drop_list.county_of_decedent,'Idaho', 'Idaho');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Jerome', 'Jerome');addOption(document.drop_list.county_of_decedent,'Kootenai', 'Kootenai');addOption(document.drop_list.county_of_decedent,'Latah', 'Latah');addOption(document.drop_list.county_of_decedent,'Lemhi', 'Lemhi');addOption(document.drop_list.county_of_decedent,'Lewis', 'Lewis');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Minidoka', 'Minidoka');addOption(document.drop_list.county_of_decedent,'Nez Perce', 'Nez Perce');addOption(document.drop_list.county_of_decedent,'Oneida', 'Oneida');addOption(document.drop_list.county_of_decedent,'Owyhee', 'Owyhee');addOption(document.drop_list.county_of_decedent,'Payette', 'Payette');addOption(document.drop_list.county_of_decedent,'Power', 'Power');addOption(document.drop_list.county_of_decedent,'Shoshone', 'Shoshone');addOption(document.drop_list.county_of_decedent,'Teton', 'Teton');addOption(document.drop_list.county_of_decedent,'Twin Falls', 'Twin Falls');addOption(document.drop_list.county_of_decedent,'Valley', 'Valley');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');}if(document.drop_list.state_of_decedent.value == 'illinois'){addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Alexander', 'Alexander');addOption(document.drop_list.county_of_decedent,'Bond', 'Bond');addOption(document.drop_list.county_of_decedent,'Boone', 'Boone');addOption(document.drop_list.county_of_decedent,'Brown', 'Brown');addOption(document.drop_list.county_of_decedent,'Bureau', 'Bureau');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Cass', 'Cass');addOption(document.drop_list.county_of_decedent,'Champaign', 'Champaign');addOption(document.drop_list.county_of_decedent,'Christian', 'Christian');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Clinton', 'Clinton');addOption(document.drop_list.county_of_decedent,'Coles', 'Coles');addOption(document.drop_list.county_of_decedent,'Cook', 'Cook');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Cumberland', 'Cumberland');addOption(document.drop_list.county_of_decedent,'De Kalb', 'De Kalb');addOption(document.drop_list.county_of_decedent,'Dewitt', 'Dewitt');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Du Page', 'Du Page');addOption(document.drop_list.county_of_decedent,'Edgar', 'Edgar');addOption(document.drop_list.county_of_decedent,'Edwards', 'Edwards');addOption(document.drop_list.county_of_decedent,'Effingham', 'Effingham');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Ford', 'Ford');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Fulton', 'Fulton');addOption(document.drop_list.county_of_decedent,'Gallatin', 'Gallatin');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Grundy', 'Grundy');addOption(document.drop_list.county_of_decedent,'Hamilton', 'Hamilton');addOption(document.drop_list.county_of_decedent,'Hancock', 'Hancock');addOption(document.drop_list.county_of_decedent,'Hardin', 'Hardin');addOption(document.drop_list.county_of_decedent,'Henderson', 'Henderson');addOption(document.drop_list.county_of_decedent,'Henry', 'Henry');addOption(document.drop_list.county_of_decedent,'Iroquois', 'Iroquois');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jasper', 'Jasper');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Jersey', 'Jersey');addOption(document.drop_list.county_of_decedent,'Jo Daviess', 'Jo Daviess');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Kane', 'Kane');addOption(document.drop_list.county_of_decedent,'Kankakee', 'Kankakee');addOption(document.drop_list.county_of_decedent,'Kendall', 'Kendall');addOption(document.drop_list.county_of_decedent,'Knox', 'Knox');addOption(document.drop_list.county_of_decedent,'La Salle', 'La Salle');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Livingston', 'Livingston');addOption(document.drop_list.county_of_decedent,'Logan', 'Logan');addOption(document.drop_list.county_of_decedent,'Macon', 'Macon');addOption(document.drop_list.county_of_decedent,'Macoupin', 'Macoupin');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'Mason', 'Mason');addOption(document.drop_list.county_of_decedent,'Massac', 'Massac');addOption(document.drop_list.county_of_decedent,'McDonough', 'McDonough');addOption(document.drop_list.county_of_decedent,'McHenry', 'McHenry');addOption(document.drop_list.county_of_decedent,'McLean', 'McLean');addOption(document.drop_list.county_of_decedent,'Menard', 'Menard');addOption(document.drop_list.county_of_decedent,'Mercer', 'Mercer');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'Moultrie', 'Moultrie');addOption(document.drop_list.county_of_decedent,'Ogle', 'Ogle');addOption(document.drop_list.county_of_decedent,'Peoria', 'Peoria');addOption(document.drop_list.county_of_decedent,'Perry', 'Perry');addOption(document.drop_list.county_of_decedent,'Piatt', 'Piatt');addOption(document.drop_list.county_of_decedent,'Pike', 'Pike');addOption(document.drop_list.county_of_decedent,'Pope', 'Pope');addOption(document.drop_list.county_of_decedent,'Pulaski', 'Pulaski');addOption(document.drop_list.county_of_decedent,'Putnam', 'Putnam');addOption(document.drop_list.county_of_decedent,'Randolph', 'Randolph');addOption(document.drop_list.county_of_decedent,'Richland', 'Richland');addOption(document.drop_list.county_of_decedent,'Rock Island', 'Rock Island');addOption(document.drop_list.county_of_decedent,'Saint Clair', 'Saint Clair');addOption(document.drop_list.county_of_decedent,'Saline', 'Saline');addOption(document.drop_list.county_of_decedent,'Sangamon', 'Sangamon');addOption(document.drop_list.county_of_decedent,'Schuyler', 'Schuyler');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Shelby', 'Shelby');addOption(document.drop_list.county_of_decedent,'Stark', 'Stark');addOption(document.drop_list.county_of_decedent,'Stephenson', 'Stephenson');addOption(document.drop_list.county_of_decedent,'Tazewell', 'Tazewell');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Vermilion', 'Vermilion');addOption(document.drop_list.county_of_decedent,'Wabash', 'Wabash');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'White', 'White');addOption(document.drop_list.county_of_decedent,'Whiteside', 'Whiteside');addOption(document.drop_list.county_of_decedent,'Will', 'Will');addOption(document.drop_list.county_of_decedent,'Williamson', 'Williamson');addOption(document.drop_list.county_of_decedent,'Winnebago', 'Winnebago');addOption(document.drop_list.county_of_decedent,'Woodford', 'Woodford');}if(document.drop_list.state_of_decedent.value == 'indiana'){addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Allen', 'Allen');addOption(document.drop_list.county_of_decedent,'Bartholomew', 'Bartholomew');addOption(document.drop_list.county_of_decedent,'Benton', 'Benton');addOption(document.drop_list.county_of_decedent,'Blackford', 'Blackford');addOption(document.drop_list.county_of_decedent,'Boone', 'Boone');addOption(document.drop_list.county_of_decedent,'Brown', 'Brown');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Cass', 'Cass');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Clinton', 'Clinton');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Daviess', 'Daviess');addOption(document.drop_list.county_of_decedent,'De Kalb', 'De Kalb');addOption(document.drop_list.county_of_decedent,'Dearborn', 'Dearborn');addOption(document.drop_list.county_of_decedent,'Decatur', 'Decatur');addOption(document.drop_list.county_of_decedent,'Delaware', 'Delaware');addOption(document.drop_list.county_of_decedent,'Dubois', 'Dubois');addOption(document.drop_list.county_of_decedent,'Elkhart', 'Elkhart');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Floyd', 'Floyd');addOption(document.drop_list.county_of_decedent,'Fountain', 'Fountain');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Fulton', 'Fulton');addOption(document.drop_list.county_of_decedent,'Gibson', 'Gibson');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Hamilton', 'Hamilton');addOption(document.drop_list.county_of_decedent,'Hancock', 'Hancock');addOption(document.drop_list.county_of_decedent,'Harrison', 'Harrison');addOption(document.drop_list.county_of_decedent,'Hendricks', 'Hendricks');addOption(document.drop_list.county_of_decedent,'Henry', 'Henry');addOption(document.drop_list.county_of_decedent,'Howard', 'Howard');addOption(document.drop_list.county_of_decedent,'Huntington', 'Huntington');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jasper', 'Jasper');addOption(document.drop_list.county_of_decedent,'Jay', 'Jay');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Jennings', 'Jennings');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Knox', 'Knox');addOption(document.drop_list.county_of_decedent,'Kosciusko', 'Kosciusko');addOption(document.drop_list.county_of_decedent,'La Porte', 'La Porte');addOption(document.drop_list.county_of_decedent,'Lagrange', 'Lagrange');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'Martin', 'Martin');addOption(document.drop_list.county_of_decedent,'Miami', 'Miami');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'Newton', 'Newton');addOption(document.drop_list.county_of_decedent,'Noble', 'Noble');addOption(document.drop_list.county_of_decedent,'Ohio', 'Ohio');addOption(document.drop_list.county_of_decedent,'Orange', 'Orange');addOption(document.drop_list.county_of_decedent,'Owen', 'Owen');addOption(document.drop_list.county_of_decedent,'Parke', 'Parke');addOption(document.drop_list.county_of_decedent,'Perry', 'Perry');addOption(document.drop_list.county_of_decedent,'Pike', 'Pike');addOption(document.drop_list.county_of_decedent,'Porter', 'Porter');addOption(document.drop_list.county_of_decedent,'Posey', 'Posey');addOption(document.drop_list.county_of_decedent,'Pulaski', 'Pulaski');addOption(document.drop_list.county_of_decedent,'Putnam', 'Putnam');addOption(document.drop_list.county_of_decedent,'Randolph', 'Randolph');addOption(document.drop_list.county_of_decedent,'Ripley', 'Ripley');addOption(document.drop_list.county_of_decedent,'Rush', 'Rush');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Shelby', 'Shelby');addOption(document.drop_list.county_of_decedent,'Spencer', 'Spencer');addOption(document.drop_list.county_of_decedent,'St Joseph', 'St Joseph');addOption(document.drop_list.county_of_decedent,'Starke', 'Starke');addOption(document.drop_list.county_of_decedent,'Steuben', 'Steuben');addOption(document.drop_list.county_of_decedent,'Sullivan', 'Sullivan');addOption(document.drop_list.county_of_decedent,'Switzerland', 'Switzerland');addOption(document.drop_list.county_of_decedent,'Tippecanoe', 'Tippecanoe');addOption(document.drop_list.county_of_decedent,'Tipton', 'Tipton');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Vanderburgh', 'Vanderburgh');addOption(document.drop_list.county_of_decedent,'Vermillion', 'Vermillion');addOption(document.drop_list.county_of_decedent,'Vigo', 'Vigo');addOption(document.drop_list.county_of_decedent,'Wabash', 'Wabash');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Warrick', 'Warrick');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Wells', 'Wells');addOption(document.drop_list.county_of_decedent,'White', 'White');addOption(document.drop_list.county_of_decedent,'Whitley', 'Whitley');}if(document.drop_list.state_of_decedent.value == 'iowa'){addOption(document.drop_list.county_of_decedent,'Adair', 'Adair');addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Allamakee', 'Allamakee');addOption(document.drop_list.county_of_decedent,'Appanoose', 'Appanoose');addOption(document.drop_list.county_of_decedent,'Audubon', 'Audubon');addOption(document.drop_list.county_of_decedent,'Benton', 'Benton');addOption(document.drop_list.county_of_decedent,'Black Hawk', 'Black Hawk');addOption(document.drop_list.county_of_decedent,'Boone', 'Boone');addOption(document.drop_list.county_of_decedent,'Bremer', 'Bremer');addOption(document.drop_list.county_of_decedent,'Buchanan', 'Buchanan');addOption(document.drop_list.county_of_decedent,'Buena Vista', 'Buena Vista');addOption(document.drop_list.county_of_decedent,'Butler', 'Butler');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Cass', 'Cass');addOption(document.drop_list.county_of_decedent,'Cedar', 'Cedar');addOption(document.drop_list.county_of_decedent,'Cerro Gordo', 'Cerro Gordo');addOption(document.drop_list.county_of_decedent,'Cherokee', 'Cherokee');addOption(document.drop_list.county_of_decedent,'Chickasaw', 'Chickasaw');addOption(document.drop_list.county_of_decedent,'Clarke', 'Clarke');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Clayton', 'Clayton');addOption(document.drop_list.county_of_decedent,'Clinton', 'Clinton');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Dallas', 'Dallas');addOption(document.drop_list.county_of_decedent,'Davis', 'Davis');addOption(document.drop_list.county_of_decedent,'Decatur', 'Decatur');addOption(document.drop_list.county_of_decedent,'Delaware', 'Delaware');addOption(document.drop_list.county_of_decedent,'Des Moines', 'Des Moines');addOption(document.drop_list.county_of_decedent,'Dickinson', 'Dickinson');addOption(document.drop_list.county_of_decedent,'Dubuque', 'Dubuque');addOption(document.drop_list.county_of_decedent,'Emmet', 'Emmet');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Floyd', 'Floyd');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Fremont', 'Fremont');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Grundy', 'Grundy');addOption(document.drop_list.county_of_decedent,'Guthrie', 'Guthrie');addOption(document.drop_list.county_of_decedent,'Hamilton', 'Hamilton');addOption(document.drop_list.county_of_decedent,'Hancock', 'Hancock');addOption(document.drop_list.county_of_decedent,'Hardin', 'Hardin');addOption(document.drop_list.county_of_decedent,'Harrison', 'Harrison');addOption(document.drop_list.county_of_decedent,'Henry', 'Henry');addOption(document.drop_list.county_of_decedent,'Howard', 'Howard');addOption(document.drop_list.county_of_decedent,'Humboldt', 'Humboldt');addOption(document.drop_list.county_of_decedent,'Ida', 'Ida');addOption(document.drop_list.county_of_decedent,'Iowa', 'Iowa');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jasper', 'Jasper');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Jones', 'Jones');addOption(document.drop_list.county_of_decedent,'Keokuk', 'Keokuk');addOption(document.drop_list.county_of_decedent,'Kossuth', 'Kossuth');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Linn', 'Linn');addOption(document.drop_list.county_of_decedent,'Louisa', 'Louisa');addOption(document.drop_list.county_of_decedent,'Lucas', 'Lucas');addOption(document.drop_list.county_of_decedent,'Lyon', 'Lyon');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Mahaska', 'Mahaska');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'Mills', 'Mills');addOption(document.drop_list.county_of_decedent,'Mitchell', 'Mitchell');addOption(document.drop_list.county_of_decedent,'Monona', 'Monona');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Muscatine', 'Muscatine');addOption(document.drop_list.county_of_decedent,'Obrien', 'Obrien');addOption(document.drop_list.county_of_decedent,'Osceola', 'Osceola');addOption(document.drop_list.county_of_decedent,'Page', 'Page');addOption(document.drop_list.county_of_decedent,'Palo Alto', 'Palo Alto');addOption(document.drop_list.county_of_decedent,'Plymouth', 'Plymouth');addOption(document.drop_list.county_of_decedent,'Pocahontas', 'Pocahontas');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Pottawattamie', 'Pottawattamie');addOption(document.drop_list.county_of_decedent,'Poweshiek', 'Poweshiek');addOption(document.drop_list.county_of_decedent,'Ringgold', 'Ringgold');addOption(document.drop_list.county_of_decedent,'Sac', 'Sac');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Shelby', 'Shelby');addOption(document.drop_list.county_of_decedent,'Sioux', 'Sioux');addOption(document.drop_list.county_of_decedent,'Story', 'Story');addOption(document.drop_list.county_of_decedent,'Tama', 'Tama');addOption(document.drop_list.county_of_decedent,'Taylor', 'Taylor');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Van Buren', 'Van Buren');addOption(document.drop_list.county_of_decedent,'Wapello', 'Wapello');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Webster', 'Webster');addOption(document.drop_list.county_of_decedent,'Winnebago', 'Winnebago');addOption(document.drop_list.county_of_decedent,'Winneshiek', 'Winneshiek');addOption(document.drop_list.county_of_decedent,'Woodbury', 'Woodbury');addOption(document.drop_list.county_of_decedent,'Worth', 'Worth');addOption(document.drop_list.county_of_decedent,'Wright', 'Wright');}if(document.drop_list.state_of_decedent.value == 'kansas'){addOption(document.drop_list.county_of_decedent,'Allen', 'Allen');addOption(document.drop_list.county_of_decedent,'Anderson', 'Anderson');addOption(document.drop_list.county_of_decedent,'Atchison', 'Atchison');addOption(document.drop_list.county_of_decedent,'Barber', 'Barber');addOption(document.drop_list.county_of_decedent,'Barton', 'Barton');addOption(document.drop_list.county_of_decedent,'Bourbon', 'Bourbon');addOption(document.drop_list.county_of_decedent,'Brown', 'Brown');addOption(document.drop_list.county_of_decedent,'Butler', 'Butler');addOption(document.drop_list.county_of_decedent,'Chase', 'Chase');addOption(document.drop_list.county_of_decedent,'Chautauqua', 'Chautauqua');addOption(document.drop_list.county_of_decedent,'Cherokee', 'Cherokee');addOption(document.drop_list.county_of_decedent,'Cheyenne', 'Cheyenne');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Cloud', 'Cloud');addOption(document.drop_list.county_of_decedent,'Coffey', 'Coffey');addOption(document.drop_list.county_of_decedent,'Comanche', 'Comanche');addOption(document.drop_list.county_of_decedent,'Cowley', 'Cowley');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Decatur', 'Decatur');addOption(document.drop_list.county_of_decedent,'Dickinson', 'Dickinson');addOption(document.drop_list.county_of_decedent,'Doniphan', 'Doniphan');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Edwards', 'Edwards');addOption(document.drop_list.county_of_decedent,'Elk', 'Elk');addOption(document.drop_list.county_of_decedent,'Ellis', 'Ellis');addOption(document.drop_list.county_of_decedent,'Ellsworth', 'Ellsworth');addOption(document.drop_list.county_of_decedent,'Finney', 'Finney');addOption(document.drop_list.county_of_decedent,'Ford', 'Ford');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Geary', 'Geary');addOption(document.drop_list.county_of_decedent,'Gove', 'Gove');addOption(document.drop_list.county_of_decedent,'Graham', 'Graham');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Gray', 'Gray');addOption(document.drop_list.county_of_decedent,'Greeley', 'Greeley');addOption(document.drop_list.county_of_decedent,'Greenwood', 'Greenwood');addOption(document.drop_list.county_of_decedent,'Hamilton', 'Hamilton');addOption(document.drop_list.county_of_decedent,'Harper', 'Harper');addOption(document.drop_list.county_of_decedent,'Harvey', 'Harvey');addOption(document.drop_list.county_of_decedent,'Haskell', 'Haskell');addOption(document.drop_list.county_of_decedent,'Hodgeman', 'Hodgeman');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Jewell', 'Jewell');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Kearny', 'Kearny');addOption(document.drop_list.county_of_decedent,'Kingman', 'Kingman');addOption(document.drop_list.county_of_decedent,'Kiowa', 'Kiowa');addOption(document.drop_list.county_of_decedent,'Labette', 'Labette');addOption(document.drop_list.county_of_decedent,'Lane', 'Lane');addOption(document.drop_list.county_of_decedent,'Leavenworth', 'Leavenworth');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Linn', 'Linn');addOption(document.drop_list.county_of_decedent,'Logan', 'Logan');addOption(document.drop_list.county_of_decedent,'Lyon', 'Lyon');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'McPherson', 'McPherson');addOption(document.drop_list.county_of_decedent,'Meade', 'Meade');addOption(document.drop_list.county_of_decedent,'Miami', 'Miami');addOption(document.drop_list.county_of_decedent,'Mitchell', 'Mitchell');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Morris', 'Morris');addOption(document.drop_list.county_of_decedent,'Morton', 'Morton');addOption(document.drop_list.county_of_decedent,'Nemaha', 'Nemaha');addOption(document.drop_list.county_of_decedent,'Neosho', 'Neosho');addOption(document.drop_list.county_of_decedent,'Ness', 'Ness');addOption(document.drop_list.county_of_decedent,'Norton', 'Norton');addOption(document.drop_list.county_of_decedent,'Osage', 'Osage');addOption(document.drop_list.county_of_decedent,'Osborne', 'Osborne');addOption(document.drop_list.county_of_decedent,'Ottawa', 'Ottawa');addOption(document.drop_list.county_of_decedent,'Pawnee', 'Pawnee');addOption(document.drop_list.county_of_decedent,'Phillips', 'Phillips');addOption(document.drop_list.county_of_decedent,'Pottawatomie', 'Pottawatomie');addOption(document.drop_list.county_of_decedent,'Pratt', 'Pratt');addOption(document.drop_list.county_of_decedent,'Rawlins', 'Rawlins');addOption(document.drop_list.county_of_decedent,'Reno', 'Reno');addOption(document.drop_list.county_of_decedent,'Republic', 'Republic');addOption(document.drop_list.county_of_decedent,'Rice', 'Rice');addOption(document.drop_list.county_of_decedent,'Riley', 'Riley');addOption(document.drop_list.county_of_decedent,'Rooks', 'Rooks');addOption(document.drop_list.county_of_decedent,'Rush', 'Rush');addOption(document.drop_list.county_of_decedent,'Russell', 'Russell');addOption(document.drop_list.county_of_decedent,'Saline', 'Saline');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Sedgwick', 'Sedgwick');addOption(document.drop_list.county_of_decedent,'Seward', 'Seward');addOption(document.drop_list.county_of_decedent,'Shawnee', 'Shawnee');addOption(document.drop_list.county_of_decedent,'Sheridan', 'Sheridan');addOption(document.drop_list.county_of_decedent,'Sherman', 'Sherman');addOption(document.drop_list.county_of_decedent,'Smith', 'Smith');addOption(document.drop_list.county_of_decedent,'Stafford', 'Stafford');addOption(document.drop_list.county_of_decedent,'Stanton', 'Stanton');addOption(document.drop_list.county_of_decedent,'Stevens', 'Stevens');addOption(document.drop_list.county_of_decedent,'Sumner', 'Sumner');addOption(document.drop_list.county_of_decedent,'Thomas', 'Thomas');addOption(document.drop_list.county_of_decedent,'Trego', 'Trego');addOption(document.drop_list.county_of_decedent,'Wabaunsee', 'Wabaunsee');addOption(document.drop_list.county_of_decedent,'Wallace', 'Wallace');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wichita', 'Wichita');addOption(document.drop_list.county_of_decedent,'Wilson', 'Wilson');addOption(document.drop_list.county_of_decedent,'Woodson', 'Woodson');addOption(document.drop_list.county_of_decedent,'Wyandotte', 'Wyandotte');}if(document.drop_list.state_of_decedent.value == 'kentucky'){addOption(document.drop_list.county_of_decedent,'Adair', 'Adair');addOption(document.drop_list.county_of_decedent,'Allen', 'Allen');addOption(document.drop_list.county_of_decedent,'Anderson', 'Anderson');addOption(document.drop_list.county_of_decedent,'Ballard', 'Ballard');addOption(document.drop_list.county_of_decedent,'Barren', 'Barren');addOption(document.drop_list.county_of_decedent,'Bath', 'Bath');addOption(document.drop_list.county_of_decedent,'Bell', 'Bell');addOption(document.drop_list.county_of_decedent,'Boone', 'Boone');addOption(document.drop_list.county_of_decedent,'Bourbon', 'Bourbon');addOption(document.drop_list.county_of_decedent,'Boyd', 'Boyd');addOption(document.drop_list.county_of_decedent,'Boyle', 'Boyle');addOption(document.drop_list.county_of_decedent,'Bracken', 'Bracken');addOption(document.drop_list.county_of_decedent,'Breathitt', 'Breathitt');addOption(document.drop_list.county_of_decedent,'Breckinridge', 'Breckinridge');addOption(document.drop_list.county_of_decedent,'Bullitt', 'Bullitt');addOption(document.drop_list.county_of_decedent,'Butler', 'Butler');addOption(document.drop_list.county_of_decedent,'Caldwell', 'Caldwell');addOption(document.drop_list.county_of_decedent,'Calloway', 'Calloway');addOption(document.drop_list.county_of_decedent,'Campbell', 'Campbell');addOption(document.drop_list.county_of_decedent,'Carlisle', 'Carlisle');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Carter', 'Carter');addOption(document.drop_list.county_of_decedent,'Casey', 'Casey');addOption(document.drop_list.county_of_decedent,'Christian', 'Christian');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Clinton', 'Clinton');addOption(document.drop_list.county_of_decedent,'Crittenden', 'Crittenden');addOption(document.drop_list.county_of_decedent,'Cumberland', 'Cumberland');addOption(document.drop_list.county_of_decedent,'Daviess', 'Daviess');addOption(document.drop_list.county_of_decedent,'Edmonson', 'Edmonson');addOption(document.drop_list.county_of_decedent,'Elliott', 'Elliott');addOption(document.drop_list.county_of_decedent,'Estill', 'Estill');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Fleming', 'Fleming');addOption(document.drop_list.county_of_decedent,'Floyd', 'Floyd');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Fulton', 'Fulton');addOption(document.drop_list.county_of_decedent,'Gallatin', 'Gallatin');addOption(document.drop_list.county_of_decedent,'Garrard', 'Garrard');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Graves', 'Graves');addOption(document.drop_list.county_of_decedent,'Grayson', 'Grayson');addOption(document.drop_list.county_of_decedent,'Green', 'Green');addOption(document.drop_list.county_of_decedent,'Greenup', 'Greenup');addOption(document.drop_list.county_of_decedent,'Hancock', 'Hancock');addOption(document.drop_list.county_of_decedent,'Hardin', 'Hardin');addOption(document.drop_list.county_of_decedent,'Harlan', 'Harlan');addOption(document.drop_list.county_of_decedent,'Harrison', 'Harrison');addOption(document.drop_list.county_of_decedent,'Hart', 'Hart');addOption(document.drop_list.county_of_decedent,'Henderson', 'Henderson');addOption(document.drop_list.county_of_decedent,'Henry', 'Henry');addOption(document.drop_list.county_of_decedent,'Hickman', 'Hickman');addOption(document.drop_list.county_of_decedent,'Hopkins', 'Hopkins');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Jessamine', 'Jessamine');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Kenton', 'Kenton');addOption(document.drop_list.county_of_decedent,'Knott', 'Knott');addOption(document.drop_list.county_of_decedent,'Knox', 'Knox');addOption(document.drop_list.county_of_decedent,'Larue', 'Larue');addOption(document.drop_list.county_of_decedent,'Laurel', 'Laurel');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Leslie', 'Leslie');addOption(document.drop_list.county_of_decedent,'Letcher', 'Letcher');addOption(document.drop_list.county_of_decedent,'Lewis', 'Lewis');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Livingston', 'Livingston');addOption(document.drop_list.county_of_decedent,'Logan', 'Logan');addOption(document.drop_list.county_of_decedent,'Lyon', 'Lyon');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Magoffin', 'Magoffin');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'Martin', 'Martin');addOption(document.drop_list.county_of_decedent,'Mason', 'Mason');addOption(document.drop_list.county_of_decedent,'McCracken', 'McCracken');addOption(document.drop_list.county_of_decedent,'McCreary', 'McCreary');addOption(document.drop_list.county_of_decedent,'McLean', 'McLean');addOption(document.drop_list.county_of_decedent,'Meade', 'Meade');addOption(document.drop_list.county_of_decedent,'Menifee', 'Menifee');addOption(document.drop_list.county_of_decedent,'Mercer', 'Mercer');addOption(document.drop_list.county_of_decedent,'Metcalfe', 'Metcalfe');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'Muhlenberg', 'Muhlenberg');addOption(document.drop_list.county_of_decedent,'Nelson', 'Nelson');addOption(document.drop_list.county_of_decedent,'Nicholas', 'Nicholas');addOption(document.drop_list.county_of_decedent,'Ohio', 'Ohio');addOption(document.drop_list.county_of_decedent,'Oldham', 'Oldham');addOption(document.drop_list.county_of_decedent,'Owen', 'Owen');addOption(document.drop_list.county_of_decedent,'Owsley', 'Owsley');addOption(document.drop_list.county_of_decedent,'Pendleton', 'Pendleton');addOption(document.drop_list.county_of_decedent,'Perry', 'Perry');addOption(document.drop_list.county_of_decedent,'Pike', 'Pike');addOption(document.drop_list.county_of_decedent,'Powell', 'Powell');addOption(document.drop_list.county_of_decedent,'Pulaski', 'Pulaski');addOption(document.drop_list.county_of_decedent,'Robertson', 'Robertson');addOption(document.drop_list.county_of_decedent,'Rockcastle', 'Rockcastle');addOption(document.drop_list.county_of_decedent,'Rowan', 'Rowan');addOption(document.drop_list.county_of_decedent,'Russell', 'Russell');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Shelby', 'Shelby');addOption(document.drop_list.county_of_decedent,'Simpson', 'Simpson');addOption(document.drop_list.county_of_decedent,'Spencer', 'Spencer');addOption(document.drop_list.county_of_decedent,'Taylor', 'Taylor');addOption(document.drop_list.county_of_decedent,'Todd', 'Todd');addOption(document.drop_list.county_of_decedent,'Trigg', 'Trigg');addOption(document.drop_list.county_of_decedent,'Trimble', 'Trimble');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Webster', 'Webster');addOption(document.drop_list.county_of_decedent,'Whitley', 'Whitley');addOption(document.drop_list.county_of_decedent,'Wolfe', 'Wolfe');addOption(document.drop_list.county_of_decedent,'Woodford', 'Woodford');}if(document.drop_list.state_of_decedent.value == 'louisiana'){addOption(document.drop_list.county_of_decedent,'Acadia', 'Acadia');addOption(document.drop_list.county_of_decedent,'Allen', 'Allen');addOption(document.drop_list.county_of_decedent,'Ascension', 'Ascension');addOption(document.drop_list.county_of_decedent,'Assumption', 'Assumption');addOption(document.drop_list.county_of_decedent,'Avoyelles', 'Avoyelles');addOption(document.drop_list.county_of_decedent,'Beauregard', 'Beauregard');addOption(document.drop_list.county_of_decedent,'Bienville', 'Bienville');addOption(document.drop_list.county_of_decedent,'Bossier', 'Bossier');addOption(document.drop_list.county_of_decedent,'Caddo', 'Caddo');addOption(document.drop_list.county_of_decedent,'Calcasieu', 'Calcasieu');addOption(document.drop_list.county_of_decedent,'Caldwell', 'Caldwell');addOption(document.drop_list.county_of_decedent,'Cameron', 'Cameron');addOption(document.drop_list.county_of_decedent,'Catahoula', 'Catahoula');addOption(document.drop_list.county_of_decedent,'Claiborne', 'Claiborne');addOption(document.drop_list.county_of_decedent,'Concordia', 'Concordia');addOption(document.drop_list.county_of_decedent,'De Soto', 'De Soto');addOption(document.drop_list.county_of_decedent,'East Baton Rouge', 'East Baton Rouge');addOption(document.drop_list.county_of_decedent,'East Carroll', 'East Carroll');addOption(document.drop_list.county_of_decedent,'East Feliciana', 'East Feliciana');addOption(document.drop_list.county_of_decedent,'Evangeline', 'Evangeline');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Iberia', 'Iberia');addOption(document.drop_list.county_of_decedent,'Iberville', 'Iberville');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Jefferson Davis', 'Jefferson Davis');addOption(document.drop_list.county_of_decedent,'La Salle', 'La Salle');addOption(document.drop_list.county_of_decedent,'Lafayette', 'Lafayette');addOption(document.drop_list.county_of_decedent,'Lafourche', 'Lafourche');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Livingston', 'Livingston');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Morehouse', 'Morehouse');addOption(document.drop_list.county_of_decedent,'Natchitoches', 'Natchitoches');addOption(document.drop_list.county_of_decedent,'Orleans', 'Orleans');addOption(document.drop_list.county_of_decedent,'Ouachita', 'Ouachita');addOption(document.drop_list.county_of_decedent,'Plaquemines', 'Plaquemines');addOption(document.drop_list.county_of_decedent,'Pointe Coupee', 'Pointe Coupee');addOption(document.drop_list.county_of_decedent,'Rapides', 'Rapides');addOption(document.drop_list.county_of_decedent,'Red River', 'Red River');addOption(document.drop_list.county_of_decedent,'Richland', 'Richland');addOption(document.drop_list.county_of_decedent,'Sabine', 'Sabine');addOption(document.drop_list.county_of_decedent,'Saint Bernard', 'Saint Bernard');addOption(document.drop_list.county_of_decedent,'Saint Charles', 'Saint Charles');addOption(document.drop_list.county_of_decedent,'Saint Helena', 'Saint Helena');addOption(document.drop_list.county_of_decedent,'Saint James', 'Saint James');addOption(document.drop_list.county_of_decedent,'Saint Landry', 'Saint Landry');addOption(document.drop_list.county_of_decedent,'Saint Martin', 'Saint Martin');addOption(document.drop_list.county_of_decedent,'Saint Mary', 'Saint Mary');addOption(document.drop_list.county_of_decedent,'Saint Tammany', 'Saint Tammany');addOption(document.drop_list.county_of_decedent,'St John the Baptist', 'St John the Baptist');addOption(document.drop_list.county_of_decedent,'Tangipahoa', 'Tangipahoa');addOption(document.drop_list.county_of_decedent,'Tensas', 'Tensas');addOption(document.drop_list.county_of_decedent,'Terrebonne', 'Terrebonne');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Vermilion', 'Vermilion');addOption(document.drop_list.county_of_decedent,'Vernon', 'Vernon');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Webster', 'Webster');addOption(document.drop_list.county_of_decedent,'West Baton Rouge', 'West Baton Rouge');addOption(document.drop_list.county_of_decedent,'West Carroll', 'West Carroll');addOption(document.drop_list.county_of_decedent,'West Feliciana', 'West Feliciana');addOption(document.drop_list.county_of_decedent,'Winn', 'Winn');}if(document.drop_list.state_of_decedent.value == 'maine'){addOption(document.drop_list.county_of_decedent,'Androscoggin', 'Androscoggin');addOption(document.drop_list.county_of_decedent,'Aroostook', 'Aroostook');addOption(document.drop_list.county_of_decedent,'Cumberland', 'Cumberland');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Hancock', 'Hancock');addOption(document.drop_list.county_of_decedent,'Kennebec', 'Kennebec');addOption(document.drop_list.county_of_decedent,'Knox', 'Knox');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Oxford', 'Oxford');addOption(document.drop_list.county_of_decedent,'Penobscot', 'Penobscot');addOption(document.drop_list.county_of_decedent,'Piscataquis', 'Piscataquis');addOption(document.drop_list.county_of_decedent,'Sagadahoc', 'Sagadahoc');addOption(document.drop_list.county_of_decedent,'Somerset', 'Somerset');addOption(document.drop_list.county_of_decedent,'Waldo', 'Waldo');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'York', 'York');}if(document.drop_list.state_of_decedent.value == 'maryland'){addOption(document.drop_list.county_of_decedent,'Allegany', 'Allegany');addOption(document.drop_list.county_of_decedent,'Anne Arundel', 'Anne Arundel');addOption(document.drop_list.county_of_decedent,'Baltimore', 'Baltimore');addOption(document.drop_list.county_of_decedent,'Baltimore City', 'Baltimore City');addOption(document.drop_list.county_of_decedent,'Calvert', 'Calvert');addOption(document.drop_list.county_of_decedent,'Caroline', 'Caroline');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Cecil', 'Cecil');addOption(document.drop_list.county_of_decedent,'Charles', 'Charles');addOption(document.drop_list.county_of_decedent,'Dorchester', 'Dorchester');addOption(document.drop_list.county_of_decedent,'Frederick', 'Frederick');addOption(document.drop_list.county_of_decedent,'Garrett', 'Garrett');addOption(document.drop_list.county_of_decedent,'Harford', 'Harford');addOption(document.drop_list.county_of_decedent,'Howard', 'Howard');addOption(document.drop_list.county_of_decedent,'Kent', 'Kent');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Prince Georges', 'Prince Georges');addOption(document.drop_list.county_of_decedent,'Queen Annes', 'Queen Annes');addOption(document.drop_list.county_of_decedent,'Saint Marys', 'Saint Marys');addOption(document.drop_list.county_of_decedent,'Somerset', 'Somerset');addOption(document.drop_list.county_of_decedent,'Talbot', 'Talbot');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wicomico', 'Wicomico');addOption(document.drop_list.county_of_decedent,'Worcester', 'Worcester');}if(document.drop_list.state_of_decedent.value == 'massachusetts'){addOption(document.drop_list.county_of_decedent,'Barnstable', 'Barnstable');addOption(document.drop_list.county_of_decedent,'Berkshire', 'Berkshire');addOption(document.drop_list.county_of_decedent,'Bristol', 'Bristol');addOption(document.drop_list.county_of_decedent,'Dukes', 'Dukes');addOption(document.drop_list.county_of_decedent,'Essex', 'Essex');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Hampden', 'Hampden');addOption(document.drop_list.county_of_decedent,'Hampshire', 'Hampshire');addOption(document.drop_list.county_of_decedent,'Middlesex', 'Middlesex');addOption(document.drop_list.county_of_decedent,'Nantucket', 'Nantucket');addOption(document.drop_list.county_of_decedent,'Norfolk', 'Norfolk');addOption(document.drop_list.county_of_decedent,'Plymouth', 'Plymouth');addOption(document.drop_list.county_of_decedent,'Suffolk', 'Suffolk');addOption(document.drop_list.county_of_decedent,'Worcester', 'Worcester');}if(document.drop_list.state_of_decedent.value == 'michigan'){addOption(document.drop_list.county_of_decedent,'Alcona', 'Alcona');addOption(document.drop_list.county_of_decedent,'Alger', 'Alger');addOption(document.drop_list.county_of_decedent,'Allegan', 'Allegan');addOption(document.drop_list.county_of_decedent,'Alpena', 'Alpena');addOption(document.drop_list.county_of_decedent,'Antrim', 'Antrim');addOption(document.drop_list.county_of_decedent,'Arenac', 'Arenac');addOption(document.drop_list.county_of_decedent,'Baraga', 'Baraga');addOption(document.drop_list.county_of_decedent,'Barry', 'Barry');addOption(document.drop_list.county_of_decedent,'Bay', 'Bay');addOption(document.drop_list.county_of_decedent,'Benzie', 'Benzie');addOption(document.drop_list.county_of_decedent,'Berrien', 'Berrien');addOption(document.drop_list.county_of_decedent,'Branch', 'Branch');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Cass', 'Cass');addOption(document.drop_list.county_of_decedent,'Charlevoix', 'Charlevoix');addOption(document.drop_list.county_of_decedent,'Cheboygan', 'Cheboygan');addOption(document.drop_list.county_of_decedent,'Chippewa', 'Chippewa');addOption(document.drop_list.county_of_decedent,'Clare', 'Clare');addOption(document.drop_list.county_of_decedent,'Clinton', 'Clinton');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Delta', 'Delta');addOption(document.drop_list.county_of_decedent,'Dickinson', 'Dickinson');addOption(document.drop_list.county_of_decedent,'Eaton', 'Eaton');addOption(document.drop_list.county_of_decedent,'Emmet', 'Emmet');addOption(document.drop_list.county_of_decedent,'Genesee', 'Genesee');addOption(document.drop_list.county_of_decedent,'Gladwin', 'Gladwin');addOption(document.drop_list.county_of_decedent,'Gogebic', 'Gogebic');addOption(document.drop_list.county_of_decedent,'Grand Traverse', 'Grand Traverse');addOption(document.drop_list.county_of_decedent,'Gratiot', 'Gratiot');addOption(document.drop_list.county_of_decedent,'Hillsdale', 'Hillsdale');addOption(document.drop_list.county_of_decedent,'Houghton', 'Houghton');addOption(document.drop_list.county_of_decedent,'Huron', 'Huron');addOption(document.drop_list.county_of_decedent,'Ingham', 'Ingham');addOption(document.drop_list.county_of_decedent,'Ionia', 'Ionia');addOption(document.drop_list.county_of_decedent,'Iosco', 'Iosco');addOption(document.drop_list.county_of_decedent,'Iron', 'Iron');addOption(document.drop_list.county_of_decedent,'Isabella', 'Isabella');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Kalamazoo', 'Kalamazoo');addOption(document.drop_list.county_of_decedent,'Kalkaska', 'Kalkaska');addOption(document.drop_list.county_of_decedent,'Kent', 'Kent');addOption(document.drop_list.county_of_decedent,'Keweenaw', 'Keweenaw');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lapeer', 'Lapeer');addOption(document.drop_list.county_of_decedent,'Leelanau', 'Leelanau');addOption(document.drop_list.county_of_decedent,'Lenawee', 'Lenawee');addOption(document.drop_list.county_of_decedent,'Livingston', 'Livingston');addOption(document.drop_list.county_of_decedent,'Luce', 'Luce');addOption(document.drop_list.county_of_decedent,'Mackinac', 'Mackinac');addOption(document.drop_list.county_of_decedent,'Macomb', 'Macomb');addOption(document.drop_list.county_of_decedent,'Manistee', 'Manistee');addOption(document.drop_list.county_of_decedent,'Marquette', 'Marquette');addOption(document.drop_list.county_of_decedent,'Mason', 'Mason');addOption(document.drop_list.county_of_decedent,'Mecosta', 'Mecosta');addOption(document.drop_list.county_of_decedent,'Menominee', 'Menominee');addOption(document.drop_list.county_of_decedent,'Midland', 'Midland');addOption(document.drop_list.county_of_decedent,'Missaukee', 'Missaukee');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montcalm', 'Montcalm');addOption(document.drop_list.county_of_decedent,'Montmorency', 'Montmorency');addOption(document.drop_list.county_of_decedent,'Muskegon', 'Muskegon');addOption(document.drop_list.county_of_decedent,'Newaygo', 'Newaygo');addOption(document.drop_list.county_of_decedent,'Oakland', 'Oakland');addOption(document.drop_list.county_of_decedent,'Oceana', 'Oceana');addOption(document.drop_list.county_of_decedent,'Ogemaw', 'Ogemaw');addOption(document.drop_list.county_of_decedent,'Ontonagon', 'Ontonagon');addOption(document.drop_list.county_of_decedent,'Osceola', 'Osceola');addOption(document.drop_list.county_of_decedent,'Oscoda', 'Oscoda');addOption(document.drop_list.county_of_decedent,'Otsego', 'Otsego');addOption(document.drop_list.county_of_decedent,'Ottawa', 'Ottawa');addOption(document.drop_list.county_of_decedent,'Presque Isle', 'Presque Isle');addOption(document.drop_list.county_of_decedent,'Roscommon', 'Roscommon');addOption(document.drop_list.county_of_decedent,'Saginaw', 'Saginaw');addOption(document.drop_list.county_of_decedent,'Saint Clair', 'Saint Clair');addOption(document.drop_list.county_of_decedent,'Saint Joseph', 'Saint Joseph');addOption(document.drop_list.county_of_decedent,'Sanilac', 'Sanilac');addOption(document.drop_list.county_of_decedent,'Schoolcraft', 'Schoolcraft');addOption(document.drop_list.county_of_decedent,'Shiawassee', 'Shiawassee');addOption(document.drop_list.county_of_decedent,'Tuscola', 'Tuscola');addOption(document.drop_list.county_of_decedent,'Van Buren', 'Van Buren');addOption(document.drop_list.county_of_decedent,'Washtenaw', 'Washtenaw');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Wexford', 'Wexford');}if(document.drop_list.state_of_decedent.value == 'minnesota'){addOption(document.drop_list.county_of_decedent,'Aitkin', 'Aitkin');addOption(document.drop_list.county_of_decedent,'Anoka', 'Anoka');addOption(document.drop_list.county_of_decedent,'Becker', 'Becker');addOption(document.drop_list.county_of_decedent,'Beltrami', 'Beltrami');addOption(document.drop_list.county_of_decedent,'Benton', 'Benton');addOption(document.drop_list.county_of_decedent,'Big Stone', 'Big Stone');addOption(document.drop_list.county_of_decedent,'Blue Earth', 'Blue Earth');addOption(document.drop_list.county_of_decedent,'Brown', 'Brown');addOption(document.drop_list.county_of_decedent,'Carlton', 'Carlton');addOption(document.drop_list.county_of_decedent,'Carver', 'Carver');addOption(document.drop_list.county_of_decedent,'Cass', 'Cass');addOption(document.drop_list.county_of_decedent,'Chippewa', 'Chippewa');addOption(document.drop_list.county_of_decedent,'Chisago', 'Chisago');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Clearwater', 'Clearwater');addOption(document.drop_list.county_of_decedent,'Cook', 'Cook');addOption(document.drop_list.county_of_decedent,'Cottonwood', 'Cottonwood');addOption(document.drop_list.county_of_decedent,'Crow Wing', 'Crow Wing');addOption(document.drop_list.county_of_decedent,'Dakota', 'Dakota');addOption(document.drop_list.county_of_decedent,'Dodge', 'Dodge');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Faribault', 'Faribault');addOption(document.drop_list.county_of_decedent,'Fillmore', 'Fillmore');addOption(document.drop_list.county_of_decedent,'Freeborn', 'Freeborn');addOption(document.drop_list.county_of_decedent,'Goodhue', 'Goodhue');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Hennepin', 'Hennepin');addOption(document.drop_list.county_of_decedent,'Houston', 'Houston');addOption(document.drop_list.county_of_decedent,'Hubbard', 'Hubbard');addOption(document.drop_list.county_of_decedent,'Isanti', 'Isanti');addOption(document.drop_list.county_of_decedent,'Itasca', 'Itasca');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Kanabec', 'Kanabec');addOption(document.drop_list.county_of_decedent,'Kandiyohi', 'Kandiyohi');addOption(document.drop_list.county_of_decedent,'Kittson', 'Kittson');addOption(document.drop_list.county_of_decedent,'Koochiching', 'Koochiching');addOption(document.drop_list.county_of_decedent,'Lac Qui Parle', 'Lac Qui Parle');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lake of the Woods', 'Lake of the Woods');addOption(document.drop_list.county_of_decedent,'Le Sueur', 'Le Sueur');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Lyon', 'Lyon');addOption(document.drop_list.county_of_decedent,'Mahnomen', 'Mahnomen');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'Martin', 'Martin');addOption(document.drop_list.county_of_decedent,'McLeod', 'McLeod');addOption(document.drop_list.county_of_decedent,'Meeker', 'Meeker');addOption(document.drop_list.county_of_decedent,'Mille Lacs', 'Mille Lacs');addOption(document.drop_list.county_of_decedent,'Morrison', 'Morrison');addOption(document.drop_list.county_of_decedent,'Mower', 'Mower');addOption(document.drop_list.county_of_decedent,'Murray', 'Murray');addOption(document.drop_list.county_of_decedent,'Nicollet', 'Nicollet');addOption(document.drop_list.county_of_decedent,'Nobles', 'Nobles');addOption(document.drop_list.county_of_decedent,'Norman', 'Norman');addOption(document.drop_list.county_of_decedent,'Olmsted', 'Olmsted');addOption(document.drop_list.county_of_decedent,'Otter Tail', 'Otter Tail');addOption(document.drop_list.county_of_decedent,'Pennington', 'Pennington');addOption(document.drop_list.county_of_decedent,'Pine', 'Pine');addOption(document.drop_list.county_of_decedent,'Pipestone', 'Pipestone');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Pope', 'Pope');addOption(document.drop_list.county_of_decedent,'Ramsey', 'Ramsey');addOption(document.drop_list.county_of_decedent,'Red Lake', 'Red Lake');addOption(document.drop_list.county_of_decedent,'Redwood', 'Redwood');addOption(document.drop_list.county_of_decedent,'Renville', 'Renville');addOption(document.drop_list.county_of_decedent,'Rice', 'Rice');addOption(document.drop_list.county_of_decedent,'Rock', 'Rock');addOption(document.drop_list.county_of_decedent,'Roseau', 'Roseau');addOption(document.drop_list.county_of_decedent,'Saint Louis', 'Saint Louis');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Sherburne', 'Sherburne');addOption(document.drop_list.county_of_decedent,'Sibley', 'Sibley');addOption(document.drop_list.county_of_decedent,'Stearns', 'Stearns');addOption(document.drop_list.county_of_decedent,'Steele', 'Steele');addOption(document.drop_list.county_of_decedent,'Stevens', 'Stevens');addOption(document.drop_list.county_of_decedent,'Swift', 'Swift');addOption(document.drop_list.county_of_decedent,'Todd', 'Todd');addOption(document.drop_list.county_of_decedent,'Traverse', 'Traverse');addOption(document.drop_list.county_of_decedent,'Wabasha', 'Wabasha');addOption(document.drop_list.county_of_decedent,'Wadena', 'Wadena');addOption(document.drop_list.county_of_decedent,'Waseca', 'Waseca');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Watonwan', 'Watonwan');addOption(document.drop_list.county_of_decedent,'Wilkin', 'Wilkin');addOption(document.drop_list.county_of_decedent,'Winona', 'Winona');addOption(document.drop_list.county_of_decedent,'Wright', 'Wright');addOption(document.drop_list.county_of_decedent,'Yellow Medicine', 'Yellow Medicine');}if(document.drop_list.state_of_decedent.value == 'mississippi'){addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Alcorn', 'Alcorn');addOption(document.drop_list.county_of_decedent,'Amite', 'Amite');addOption(document.drop_list.county_of_decedent,'Attala', 'Attala');addOption(document.drop_list.county_of_decedent,'Benton', 'Benton');addOption(document.drop_list.county_of_decedent,'Bolivar', 'Bolivar');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Chickasaw', 'Chickasaw');addOption(document.drop_list.county_of_decedent,'Choctaw', 'Choctaw');addOption(document.drop_list.county_of_decedent,'Claiborne', 'Claiborne');addOption(document.drop_list.county_of_decedent,'Clarke', 'Clarke');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Coahoma', 'Coahoma');addOption(document.drop_list.county_of_decedent,'Copiah', 'Copiah');addOption(document.drop_list.county_of_decedent,'Covington', 'Covington');addOption(document.drop_list.county_of_decedent,'De Soto', 'De Soto');addOption(document.drop_list.county_of_decedent,'Forrest', 'Forrest');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'George', 'George');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Grenada', 'Grenada');addOption(document.drop_list.county_of_decedent,'Hancock', 'Hancock');addOption(document.drop_list.county_of_decedent,'Harrison', 'Harrison');addOption(document.drop_list.county_of_decedent,'Hinds', 'Hinds');addOption(document.drop_list.county_of_decedent,'Holmes', 'Holmes');addOption(document.drop_list.county_of_decedent,'Humphreys', 'Humphreys');addOption(document.drop_list.county_of_decedent,'Issaquena', 'Issaquena');addOption(document.drop_list.county_of_decedent,'Itawamba', 'Itawamba');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jasper', 'Jasper');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Jefferson Davis', 'Jefferson Davis');addOption(document.drop_list.county_of_decedent,'Jones', 'Jones');addOption(document.drop_list.county_of_decedent,'Kemper', 'Kemper');addOption(document.drop_list.county_of_decedent,'Lafayette', 'Lafayette');addOption(document.drop_list.county_of_decedent,'Lamar', 'Lamar');addOption(document.drop_list.county_of_decedent,'Lauderdale', 'Lauderdale');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Leake', 'Leake');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Leflore', 'Leflore');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Lowndes', 'Lowndes');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Neshoba', 'Neshoba');addOption(document.drop_list.county_of_decedent,'Newton', 'Newton');addOption(document.drop_list.county_of_decedent,'Noxubee', 'Noxubee');addOption(document.drop_list.county_of_decedent,'Oktibbeha', 'Oktibbeha');addOption(document.drop_list.county_of_decedent,'Panola', 'Panola');addOption(document.drop_list.county_of_decedent,'Pearl River', 'Pearl River');addOption(document.drop_list.county_of_decedent,'Perry', 'Perry');addOption(document.drop_list.county_of_decedent,'Pike', 'Pike');addOption(document.drop_list.county_of_decedent,'Pontotoc', 'Pontotoc');addOption(document.drop_list.county_of_decedent,'Prentiss', 'Prentiss');addOption(document.drop_list.county_of_decedent,'Quitman', 'Quitman');addOption(document.drop_list.county_of_decedent,'Rankin', 'Rankin');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Sharkey', 'Sharkey');addOption(document.drop_list.county_of_decedent,'Simpson', 'Simpson');addOption(document.drop_list.county_of_decedent,'Smith', 'Smith');addOption(document.drop_list.county_of_decedent,'Stone', 'Stone');addOption(document.drop_list.county_of_decedent,'Sunflower', 'Sunflower');addOption(document.drop_list.county_of_decedent,'Tallahatchie', 'Tallahatchie');addOption(document.drop_list.county_of_decedent,'Tate', 'Tate');addOption(document.drop_list.county_of_decedent,'Tippah', 'Tippah');addOption(document.drop_list.county_of_decedent,'Tishomingo', 'Tishomingo');addOption(document.drop_list.county_of_decedent,'Tunica', 'Tunica');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Walthall', 'Walthall');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Webster', 'Webster');addOption(document.drop_list.county_of_decedent,'Wilkinson', 'Wilkinson');addOption(document.drop_list.county_of_decedent,'Winston', 'Winston');addOption(document.drop_list.county_of_decedent,'Yalobusha', 'Yalobusha');addOption(document.drop_list.county_of_decedent,'Yazoo', 'Yazoo');}if(document.drop_list.state_of_decedent.value == 'missouri'){addOption(document.drop_list.county_of_decedent,'Adair', 'Adair');addOption(document.drop_list.county_of_decedent,'Andrew', 'Andrew');addOption(document.drop_list.county_of_decedent,'Atchison', 'Atchison');addOption(document.drop_list.county_of_decedent,'Audrain', 'Audrain');addOption(document.drop_list.county_of_decedent,'Barry', 'Barry');addOption(document.drop_list.county_of_decedent,'Barton', 'Barton');addOption(document.drop_list.county_of_decedent,'Bates', 'Bates');addOption(document.drop_list.county_of_decedent,'Benton', 'Benton');addOption(document.drop_list.county_of_decedent,'Bollinger', 'Bollinger');addOption(document.drop_list.county_of_decedent,'Boone', 'Boone');addOption(document.drop_list.county_of_decedent,'Buchanan', 'Buchanan');addOption(document.drop_list.county_of_decedent,'Butler', 'Butler');addOption(document.drop_list.county_of_decedent,'Caldwell', 'Caldwell');addOption(document.drop_list.county_of_decedent,'Callaway', 'Callaway');addOption(document.drop_list.county_of_decedent,'Camden', 'Camden');addOption(document.drop_list.county_of_decedent,'Cape Girardeau', 'Cape Girardeau');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Carter', 'Carter');addOption(document.drop_list.county_of_decedent,'Cass', 'Cass');addOption(document.drop_list.county_of_decedent,'Cedar', 'Cedar');addOption(document.drop_list.county_of_decedent,'Chariton', 'Chariton');addOption(document.drop_list.county_of_decedent,'Christian', 'Christian');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Clinton', 'Clinton');addOption(document.drop_list.county_of_decedent,'Cole', 'Cole');addOption(document.drop_list.county_of_decedent,'Cooper', 'Cooper');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Dade', 'Dade');addOption(document.drop_list.county_of_decedent,'Dallas', 'Dallas');addOption(document.drop_list.county_of_decedent,'Daviess', 'Daviess');addOption(document.drop_list.county_of_decedent,'Dekalb', 'Dekalb');addOption(document.drop_list.county_of_decedent,'Dent', 'Dent');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Dunklin', 'Dunklin');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Gasconade', 'Gasconade');addOption(document.drop_list.county_of_decedent,'Gentry', 'Gentry');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Grundy', 'Grundy');addOption(document.drop_list.county_of_decedent,'Harrison', 'Harrison');addOption(document.drop_list.county_of_decedent,'Henry', 'Henry');addOption(document.drop_list.county_of_decedent,'Hickory', 'Hickory');addOption(document.drop_list.county_of_decedent,'Holt', 'Holt');addOption(document.drop_list.county_of_decedent,'Howard', 'Howard');addOption(document.drop_list.county_of_decedent,'Howell', 'Howell');addOption(document.drop_list.county_of_decedent,'Iron', 'Iron');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jasper', 'Jasper');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Knox', 'Knox');addOption(document.drop_list.county_of_decedent,'Laclede', 'Laclede');addOption(document.drop_list.county_of_decedent,'Lafayette', 'Lafayette');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Lewis', 'Lewis');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Linn', 'Linn');addOption(document.drop_list.county_of_decedent,'Livingston', 'Livingston');addOption(document.drop_list.county_of_decedent,'Macon', 'Macon');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Maries', 'Maries');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'McDonald', 'McDonald');addOption(document.drop_list.county_of_decedent,'Mercer', 'Mercer');addOption(document.drop_list.county_of_decedent,'Miller', 'Miller');addOption(document.drop_list.county_of_decedent,'Mississippi', 'Mississippi');addOption(document.drop_list.county_of_decedent,'Moniteau', 'Moniteau');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'New Madrid', 'New Madrid');addOption(document.drop_list.county_of_decedent,'Newton', 'Newton');addOption(document.drop_list.county_of_decedent,'Nodaway', 'Nodaway');addOption(document.drop_list.county_of_decedent,'Oregon', 'Oregon');addOption(document.drop_list.county_of_decedent,'Osage', 'Osage');addOption(document.drop_list.county_of_decedent,'Ozark', 'Ozark');addOption(document.drop_list.county_of_decedent,'Pemiscot', 'Pemiscot');addOption(document.drop_list.county_of_decedent,'Perry', 'Perry');addOption(document.drop_list.county_of_decedent,'Pettis', 'Pettis');addOption(document.drop_list.county_of_decedent,'Phelps', 'Phelps');addOption(document.drop_list.county_of_decedent,'Pike', 'Pike');addOption(document.drop_list.county_of_decedent,'Platte', 'Platte');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Pulaski', 'Pulaski');addOption(document.drop_list.county_of_decedent,'Putnam', 'Putnam');addOption(document.drop_list.county_of_decedent,'Ralls', 'Ralls');addOption(document.drop_list.county_of_decedent,'Randolph', 'Randolph');addOption(document.drop_list.county_of_decedent,'Ray', 'Ray');addOption(document.drop_list.county_of_decedent,'Reynolds', 'Reynolds');addOption(document.drop_list.county_of_decedent,'Ripley', 'Ripley');addOption(document.drop_list.county_of_decedent,'Saint Charles', 'Saint Charles');addOption(document.drop_list.county_of_decedent,'Saint Clair', 'Saint Clair');addOption(document.drop_list.county_of_decedent,'Saint Francois', 'Saint Francois');addOption(document.drop_list.county_of_decedent,'Saint Louis', 'Saint Louis');addOption(document.drop_list.county_of_decedent,'Saint Louis City', 'Saint Louis City');addOption(document.drop_list.county_of_decedent,'Sainte Genevieve', 'Sainte Genevieve');addOption(document.drop_list.county_of_decedent,'Saline', 'Saline');addOption(document.drop_list.county_of_decedent,'Schuyler', 'Schuyler');addOption(document.drop_list.county_of_decedent,'Scotland', 'Scotland');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Shannon', 'Shannon');addOption(document.drop_list.county_of_decedent,'Shelby', 'Shelby');addOption(document.drop_list.county_of_decedent,'Stoddard', 'Stoddard');addOption(document.drop_list.county_of_decedent,'Stone', 'Stone');addOption(document.drop_list.county_of_decedent,'Sullivan', 'Sullivan');addOption(document.drop_list.county_of_decedent,'Taney', 'Taney');addOption(document.drop_list.county_of_decedent,'Texas', 'Texas');addOption(document.drop_list.county_of_decedent,'Vernon', 'Vernon');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Webster', 'Webster');addOption(document.drop_list.county_of_decedent,'Worth', 'Worth');addOption(document.drop_list.county_of_decedent,'Wright', 'Wright');}if(document.drop_list.state_of_decedent.value == 'montana'){addOption(document.drop_list.county_of_decedent,'Beaverhead', 'Beaverhead');addOption(document.drop_list.county_of_decedent,'Big Horn', 'Big Horn');addOption(document.drop_list.county_of_decedent,'Blaine', 'Blaine');addOption(document.drop_list.county_of_decedent,'Broadwater', 'Broadwater');addOption(document.drop_list.county_of_decedent,'Carbon', 'Carbon');addOption(document.drop_list.county_of_decedent,'Carter', 'Carter');addOption(document.drop_list.county_of_decedent,'Cascade', 'Cascade');addOption(document.drop_list.county_of_decedent,'Chouteau', 'Chouteau');addOption(document.drop_list.county_of_decedent,'Custer', 'Custer');addOption(document.drop_list.county_of_decedent,'Daniels', 'Daniels');addOption(document.drop_list.county_of_decedent,'Dawson', 'Dawson');addOption(document.drop_list.county_of_decedent,'Deer Lodge', 'Deer Lodge');addOption(document.drop_list.county_of_decedent,'Fallon', 'Fallon');addOption(document.drop_list.county_of_decedent,'Fergus', 'Fergus');addOption(document.drop_list.county_of_decedent,'Flathead', 'Flathead');addOption(document.drop_list.county_of_decedent,'Gallatin', 'Gallatin');addOption(document.drop_list.county_of_decedent,'Garfield', 'Garfield');addOption(document.drop_list.county_of_decedent,'Glacier', 'Glacier');addOption(document.drop_list.county_of_decedent,'Golden Valley', 'Golden Valley');addOption(document.drop_list.county_of_decedent,'Granite', 'Granite');addOption(document.drop_list.county_of_decedent,'Hill', 'Hill');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Judith Basin', 'Judith Basin');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lewis and Clark', 'Lewis and Clark');addOption(document.drop_list.county_of_decedent,'Liberty', 'Liberty');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'McCone', 'McCone');addOption(document.drop_list.county_of_decedent,'Meagher', 'Meagher');addOption(document.drop_list.county_of_decedent,'Mineral', 'Mineral');addOption(document.drop_list.county_of_decedent,'Missoula', 'Missoula');addOption(document.drop_list.county_of_decedent,'Musselshell', 'Musselshell');addOption(document.drop_list.county_of_decedent,'Park', 'Park');addOption(document.drop_list.county_of_decedent,'Petroleum', 'Petroleum');addOption(document.drop_list.county_of_decedent,'Phillips', 'Phillips');addOption(document.drop_list.county_of_decedent,'Pondera', 'Pondera');addOption(document.drop_list.county_of_decedent,'Powder River', 'Powder River');addOption(document.drop_list.county_of_decedent,'Powell', 'Powell');addOption(document.drop_list.county_of_decedent,'Prairie', 'Prairie');addOption(document.drop_list.county_of_decedent,'Ravalli', 'Ravalli');addOption(document.drop_list.county_of_decedent,'Richland', 'Richland');addOption(document.drop_list.county_of_decedent,'Roosevelt', 'Roosevelt');addOption(document.drop_list.county_of_decedent,'Rosebud', 'Rosebud');addOption(document.drop_list.county_of_decedent,'Sanders', 'Sanders');addOption(document.drop_list.county_of_decedent,'Sheridan', 'Sheridan');addOption(document.drop_list.county_of_decedent,'Silver Bow', 'Silver Bow');addOption(document.drop_list.county_of_decedent,'Stillwater', 'Stillwater');addOption(document.drop_list.county_of_decedent,'Sweet Grass', 'Sweet Grass');addOption(document.drop_list.county_of_decedent,'Teton', 'Teton');addOption(document.drop_list.county_of_decedent,'Toole', 'Toole');addOption(document.drop_list.county_of_decedent,'Treasure', 'Treasure');addOption(document.drop_list.county_of_decedent,'Valley', 'Valley');addOption(document.drop_list.county_of_decedent,'Wheatland', 'Wheatland');addOption(document.drop_list.county_of_decedent,'Wibaux', 'Wibaux');addOption(document.drop_list.county_of_decedent,'Yellowstone', 'Yellowstone');}if(document.drop_list.state_of_decedent.value == 'nebraska'){addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Antelope', 'Antelope');addOption(document.drop_list.county_of_decedent,'Arthur', 'Arthur');addOption(document.drop_list.county_of_decedent,'Banner', 'Banner');addOption(document.drop_list.county_of_decedent,'Blaine', 'Blaine');addOption(document.drop_list.county_of_decedent,'Boone', 'Boone');addOption(document.drop_list.county_of_decedent,'Box Butte', 'Box Butte');addOption(document.drop_list.county_of_decedent,'Boyd', 'Boyd');addOption(document.drop_list.county_of_decedent,'Brown', 'Brown');addOption(document.drop_list.county_of_decedent,'Buffalo', 'Buffalo');addOption(document.drop_list.county_of_decedent,'Burt', 'Burt');addOption(document.drop_list.county_of_decedent,'Butler', 'Butler');addOption(document.drop_list.county_of_decedent,'Cass', 'Cass');addOption(document.drop_list.county_of_decedent,'Cedar', 'Cedar');addOption(document.drop_list.county_of_decedent,'Chase', 'Chase');addOption(document.drop_list.county_of_decedent,'Cherry', 'Cherry');addOption(document.drop_list.county_of_decedent,'Cheyenne', 'Cheyenne');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Colfax', 'Colfax');addOption(document.drop_list.county_of_decedent,'Cuming', 'Cuming');addOption(document.drop_list.county_of_decedent,'Custer', 'Custer');addOption(document.drop_list.county_of_decedent,'Dakota', 'Dakota');addOption(document.drop_list.county_of_decedent,'Dawes', 'Dawes');addOption(document.drop_list.county_of_decedent,'Dawson', 'Dawson');addOption(document.drop_list.county_of_decedent,'Deuel', 'Deuel');addOption(document.drop_list.county_of_decedent,'Dixon', 'Dixon');addOption(document.drop_list.county_of_decedent,'Dodge', 'Dodge');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Dundy', 'Dundy');addOption(document.drop_list.county_of_decedent,'Fillmore', 'Fillmore');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Frontier', 'Frontier');addOption(document.drop_list.county_of_decedent,'Furnas', 'Furnas');addOption(document.drop_list.county_of_decedent,'Gage', 'Gage');addOption(document.drop_list.county_of_decedent,'Garden', 'Garden');addOption(document.drop_list.county_of_decedent,'Garfield', 'Garfield');addOption(document.drop_list.county_of_decedent,'Gosper', 'Gosper');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Greeley', 'Greeley');addOption(document.drop_list.county_of_decedent,'Hall', 'Hall');addOption(document.drop_list.county_of_decedent,'Hamilton', 'Hamilton');addOption(document.drop_list.county_of_decedent,'Harlan', 'Harlan');addOption(document.drop_list.county_of_decedent,'Hayes', 'Hayes');addOption(document.drop_list.county_of_decedent,'Hitchcock', 'Hitchcock');addOption(document.drop_list.county_of_decedent,'Holt', 'Holt');addOption(document.drop_list.county_of_decedent,'Hooker', 'Hooker');addOption(document.drop_list.county_of_decedent,'Howard', 'Howard');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Kearney', 'Kearney');addOption(document.drop_list.county_of_decedent,'Keith', 'Keith');addOption(document.drop_list.county_of_decedent,'Keya Paha', 'Keya Paha');addOption(document.drop_list.county_of_decedent,'Kimball', 'Kimball');addOption(document.drop_list.county_of_decedent,'Knox', 'Knox');addOption(document.drop_list.county_of_decedent,'Lancaster', 'Lancaster');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Logan', 'Logan');addOption(document.drop_list.county_of_decedent,'Loup', 'Loup');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'McPherson', 'McPherson');addOption(document.drop_list.county_of_decedent,'Merrick', 'Merrick');addOption(document.drop_list.county_of_decedent,'Morrill', 'Morrill');addOption(document.drop_list.county_of_decedent,'Nance', 'Nance');addOption(document.drop_list.county_of_decedent,'Nemaha', 'Nemaha');addOption(document.drop_list.county_of_decedent,'Nuckolls', 'Nuckolls');addOption(document.drop_list.county_of_decedent,'Otoe', 'Otoe');addOption(document.drop_list.county_of_decedent,'Pawnee', 'Pawnee');addOption(document.drop_list.county_of_decedent,'Perkins', 'Perkins');addOption(document.drop_list.county_of_decedent,'Phelps', 'Phelps');addOption(document.drop_list.county_of_decedent,'Pierce', 'Pierce');addOption(document.drop_list.county_of_decedent,'Platte', 'Platte');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Red Willow', 'Red Willow');addOption(document.drop_list.county_of_decedent,'Richardson', 'Richardson');addOption(document.drop_list.county_of_decedent,'Rock', 'Rock');addOption(document.drop_list.county_of_decedent,'Saline', 'Saline');addOption(document.drop_list.county_of_decedent,'Sarpy', 'Sarpy');addOption(document.drop_list.county_of_decedent,'Saunders', 'Saunders');addOption(document.drop_list.county_of_decedent,'Scotts Bluff', 'Scotts Bluff');addOption(document.drop_list.county_of_decedent,'Seward', 'Seward');addOption(document.drop_list.county_of_decedent,'Sheridan', 'Sheridan');addOption(document.drop_list.county_of_decedent,'Sherman', 'Sherman');addOption(document.drop_list.county_of_decedent,'Sioux', 'Sioux');addOption(document.drop_list.county_of_decedent,'Stanton', 'Stanton');addOption(document.drop_list.county_of_decedent,'Thayer', 'Thayer');addOption(document.drop_list.county_of_decedent,'Thomas', 'Thomas');addOption(document.drop_list.county_of_decedent,'Thurston', 'Thurston');addOption(document.drop_list.county_of_decedent,'Valley', 'Valley');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Webster', 'Webster');addOption(document.drop_list.county_of_decedent,'Wheeler', 'Wheeler');addOption(document.drop_list.county_of_decedent,'York', 'York');}if(document.drop_list.state_of_decedent.value == 'nevada'){addOption(document.drop_list.county_of_decedent,'Carson City', 'Carson City');addOption(document.drop_list.county_of_decedent,'Churchill', 'Churchill');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Elko', 'Elko');addOption(document.drop_list.county_of_decedent,'Esmeralda', 'Esmeralda');addOption(document.drop_list.county_of_decedent,'Eureka', 'Eureka');addOption(document.drop_list.county_of_decedent,'Humboldt', 'Humboldt');addOption(document.drop_list.county_of_decedent,'Lander', 'Lander');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Lyon', 'Lyon');addOption(document.drop_list.county_of_decedent,'Mineral', 'Mineral');addOption(document.drop_list.county_of_decedent,'Nye', 'Nye');addOption(document.drop_list.county_of_decedent,'Pershing', 'Pershing');addOption(document.drop_list.county_of_decedent,'Storey', 'Storey');addOption(document.drop_list.county_of_decedent,'Washoe', 'Washoe');addOption(document.drop_list.county_of_decedent,'White Pine', 'White Pine');}if(document.drop_list.state_of_decedent.value == 'newhampshire'){addOption(document.drop_list.county_of_decedent,'Belknap', 'Belknap');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Cheshire', 'Cheshire');addOption(document.drop_list.county_of_decedent,'Coos', 'Coos');addOption(document.drop_list.county_of_decedent,'Grafton', 'Grafton');addOption(document.drop_list.county_of_decedent,'Hillsborough', 'Hillsborough');addOption(document.drop_list.county_of_decedent,'Merrimack', 'Merrimack');addOption(document.drop_list.county_of_decedent,'Rockingham', 'Rockingham');addOption(document.drop_list.county_of_decedent,'Strafford', 'Strafford');addOption(document.drop_list.county_of_decedent,'Sullivan', 'Sullivan');}if(document.drop_list.state_of_decedent.value == 'newjersey'){addOption(document.drop_list.county_of_decedent,'Atlantic', 'Atlantic');addOption(document.drop_list.county_of_decedent,'Bergen', 'Bergen');addOption(document.drop_list.county_of_decedent,'Burlington', 'Burlington');addOption(document.drop_list.county_of_decedent,'Camden', 'Camden');addOption(document.drop_list.county_of_decedent,'Cape May', 'Cape May');addOption(document.drop_list.county_of_decedent,'Cumberland', 'Cumberland');addOption(document.drop_list.county_of_decedent,'Essex', 'Essex');addOption(document.drop_list.county_of_decedent,'Gloucester', 'Gloucester');addOption(document.drop_list.county_of_decedent,'Hudson', 'Hudson');addOption(document.drop_list.county_of_decedent,'Hunterdon', 'Hunterdon');addOption(document.drop_list.county_of_decedent,'Mercer', 'Mercer');addOption(document.drop_list.county_of_decedent,'Middlesex', 'Middlesex');addOption(document.drop_list.county_of_decedent,'Monmouth', 'Monmouth');addOption(document.drop_list.county_of_decedent,'Morris', 'Morris');addOption(document.drop_list.county_of_decedent,'Ocean', 'Ocean');addOption(document.drop_list.county_of_decedent,'Passaic', 'Passaic');addOption(document.drop_list.county_of_decedent,'Salem', 'Salem');addOption(document.drop_list.county_of_decedent,'Somerset', 'Somerset');addOption(document.drop_list.county_of_decedent,'Sussex', 'Sussex');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');}if(document.drop_list.state_of_decedent.value == 'newmexico'){addOption(document.drop_list.county_of_decedent,'Bernalillo', 'Bernalillo');addOption(document.drop_list.county_of_decedent,'Catron', 'Catron');addOption(document.drop_list.county_of_decedent,'Chaves', 'Chaves');addOption(document.drop_list.county_of_decedent,'Cibola', 'Cibola');addOption(document.drop_list.county_of_decedent,'Colfax', 'Colfax');addOption(document.drop_list.county_of_decedent,'Curry', 'Curry');addOption(document.drop_list.county_of_decedent,'De Baca', 'De Baca');addOption(document.drop_list.county_of_decedent,'Dona Ana', 'Dona Ana');addOption(document.drop_list.county_of_decedent,'Eddy', 'Eddy');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Guadalupe', 'Guadalupe');addOption(document.drop_list.county_of_decedent,'Harding', 'Harding');addOption(document.drop_list.county_of_decedent,'Hidalgo', 'Hidalgo');addOption(document.drop_list.county_of_decedent,'Lea', 'Lea');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Los Alamos', 'Los Alamos');addOption(document.drop_list.county_of_decedent,'Luna', 'Luna');addOption(document.drop_list.county_of_decedent,'McKinley', 'McKinley');addOption(document.drop_list.county_of_decedent,'Mora', 'Mora');addOption(document.drop_list.county_of_decedent,'Otero', 'Otero');addOption(document.drop_list.county_of_decedent,'Quay', 'Quay');addOption(document.drop_list.county_of_decedent,'Rio Arriba', 'Rio Arriba');addOption(document.drop_list.county_of_decedent,'Roosevelt', 'Roosevelt');addOption(document.drop_list.county_of_decedent,'San Juan', 'San Juan');addOption(document.drop_list.county_of_decedent,'San Miguel', 'San Miguel');addOption(document.drop_list.county_of_decedent,'Sandoval', 'Sandoval');addOption(document.drop_list.county_of_decedent,'Santa Fe', 'Santa Fe');addOption(document.drop_list.county_of_decedent,'Sierra', 'Sierra');addOption(document.drop_list.county_of_decedent,'Socorro', 'Socorro');addOption(document.drop_list.county_of_decedent,'Taos', 'Taos');addOption(document.drop_list.county_of_decedent,'Torrance', 'Torrance');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Valencia', 'Valencia');}if(document.drop_list.state_of_decedent.value == 'newyork'){addOption(document.drop_list.county_of_decedent,'Albany', 'Albany');addOption(document.drop_list.county_of_decedent,'Allegany', 'Allegany');addOption(document.drop_list.county_of_decedent,'Bronx', 'Bronx');addOption(document.drop_list.county_of_decedent,'Broome', 'Broome');addOption(document.drop_list.county_of_decedent,'Cattaraugus', 'Cattaraugus');addOption(document.drop_list.county_of_decedent,'Cayuga', 'Cayuga');addOption(document.drop_list.county_of_decedent,'Chautauqua', 'Chautauqua');addOption(document.drop_list.county_of_decedent,'Chemung', 'Chemung');addOption(document.drop_list.county_of_decedent,'Chenango', 'Chenango');addOption(document.drop_list.county_of_decedent,'Clinton', 'Clinton');addOption(document.drop_list.county_of_decedent,'Columbia', 'Columbia');addOption(document.drop_list.county_of_decedent,'Cortland', 'Cortland');addOption(document.drop_list.county_of_decedent,'Delaware', 'Delaware');addOption(document.drop_list.county_of_decedent,'Dutchess', 'Dutchess');addOption(document.drop_list.county_of_decedent,'Erie', 'Erie');addOption(document.drop_list.county_of_decedent,'Essex', 'Essex');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Fulton', 'Fulton');addOption(document.drop_list.county_of_decedent,'Genesee', 'Genesee');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Hamilton', 'Hamilton');addOption(document.drop_list.county_of_decedent,'Herkimer', 'Herkimer');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Kings', 'Kings');addOption(document.drop_list.county_of_decedent,'Lewis', 'Lewis');addOption(document.drop_list.county_of_decedent,'Livingston', 'Livingston');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Nassau', 'Nassau');addOption(document.drop_list.county_of_decedent,'New York', 'New York');addOption(document.drop_list.county_of_decedent,'Niagara', 'Niagara');addOption(document.drop_list.county_of_decedent,'Oneida', 'Oneida');addOption(document.drop_list.county_of_decedent,'Onondaga', 'Onondaga');addOption(document.drop_list.county_of_decedent,'Ontario', 'Ontario');addOption(document.drop_list.county_of_decedent,'Orange', 'Orange');addOption(document.drop_list.county_of_decedent,'Orleans', 'Orleans');addOption(document.drop_list.county_of_decedent,'Oswego', 'Oswego');addOption(document.drop_list.county_of_decedent,'Otsego', 'Otsego');addOption(document.drop_list.county_of_decedent,'Putnam', 'Putnam');addOption(document.drop_list.county_of_decedent,'Queens', 'Queens');addOption(document.drop_list.county_of_decedent,'Rensselaer', 'Rensselaer');addOption(document.drop_list.county_of_decedent,'Richmond', 'Richmond');addOption(document.drop_list.county_of_decedent,'Rockland', 'Rockland');addOption(document.drop_list.county_of_decedent,'Saint Lawrence', 'Saint Lawrence');addOption(document.drop_list.county_of_decedent,'Saratoga', 'Saratoga');addOption(document.drop_list.county_of_decedent,'Schenectady', 'Schenectady');addOption(document.drop_list.county_of_decedent,'Schoharie', 'Schoharie');addOption(document.drop_list.county_of_decedent,'Schuyler', 'Schuyler');addOption(document.drop_list.county_of_decedent,'Seneca', 'Seneca');addOption(document.drop_list.county_of_decedent,'Steuben', 'Steuben');addOption(document.drop_list.county_of_decedent,'Suffolk', 'Suffolk');addOption(document.drop_list.county_of_decedent,'Sullivan', 'Sullivan');addOption(document.drop_list.county_of_decedent,'Tioga', 'Tioga');addOption(document.drop_list.county_of_decedent,'Tompkins', 'Tompkins');addOption(document.drop_list.county_of_decedent,'Ulster', 'Ulster');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Westchester', 'Westchester');addOption(document.drop_list.county_of_decedent,'Wyoming', 'Wyoming');addOption(document.drop_list.county_of_decedent,'Yates', 'Yates');}if(document.drop_list.state_of_decedent.value == 'northcarolina'){addOption(document.drop_list.county_of_decedent,'Alamance', 'Alamance');addOption(document.drop_list.county_of_decedent,'Alexander', 'Alexander');addOption(document.drop_list.county_of_decedent,'Alleghany', 'Alleghany');addOption(document.drop_list.county_of_decedent,'Anson', 'Anson');addOption(document.drop_list.county_of_decedent,'Ashe', 'Ashe');addOption(document.drop_list.county_of_decedent,'Avery', 'Avery');addOption(document.drop_list.county_of_decedent,'Beaufort', 'Beaufort');addOption(document.drop_list.county_of_decedent,'Bertie', 'Bertie');addOption(document.drop_list.county_of_decedent,'Bladen', 'Bladen');addOption(document.drop_list.county_of_decedent,'Brunswick', 'Brunswick');addOption(document.drop_list.county_of_decedent,'Buncombe', 'Buncombe');addOption(document.drop_list.county_of_decedent,'Burke', 'Burke');addOption(document.drop_list.county_of_decedent,'Cabarrus', 'Cabarrus');addOption(document.drop_list.county_of_decedent,'Caldwell', 'Caldwell');addOption(document.drop_list.county_of_decedent,'Camden', 'Camden');addOption(document.drop_list.county_of_decedent,'Carteret', 'Carteret');addOption(document.drop_list.county_of_decedent,'Caswell', 'Caswell');addOption(document.drop_list.county_of_decedent,'Catawba', 'Catawba');addOption(document.drop_list.county_of_decedent,'Chatham', 'Chatham');addOption(document.drop_list.county_of_decedent,'Cherokee', 'Cherokee');addOption(document.drop_list.county_of_decedent,'Chowan', 'Chowan');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Cleveland', 'Cleveland');addOption(document.drop_list.county_of_decedent,'Columbus', 'Columbus');addOption(document.drop_list.county_of_decedent,'Craven', 'Craven');addOption(document.drop_list.county_of_decedent,'Cumberland', 'Cumberland');addOption(document.drop_list.county_of_decedent,'Currituck', 'Currituck');addOption(document.drop_list.county_of_decedent,'Dare', 'Dare');addOption(document.drop_list.county_of_decedent,'Davidson', 'Davidson');addOption(document.drop_list.county_of_decedent,'Davie', 'Davie');addOption(document.drop_list.county_of_decedent,'Duplin', 'Duplin');addOption(document.drop_list.county_of_decedent,'Durham', 'Durham');addOption(document.drop_list.county_of_decedent,'Edgecombe', 'Edgecombe');addOption(document.drop_list.county_of_decedent,'Forsyth', 'Forsyth');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Gaston', 'Gaston');addOption(document.drop_list.county_of_decedent,'Gates', 'Gates');addOption(document.drop_list.county_of_decedent,'Graham', 'Graham');addOption(document.drop_list.county_of_decedent,'Granville', 'Granville');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Guilford', 'Guilford');addOption(document.drop_list.county_of_decedent,'Halifax', 'Halifax');addOption(document.drop_list.county_of_decedent,'Harnett', 'Harnett');addOption(document.drop_list.county_of_decedent,'Haywood', 'Haywood');addOption(document.drop_list.county_of_decedent,'Henderson', 'Henderson');addOption(document.drop_list.county_of_decedent,'Hertford', 'Hertford');addOption(document.drop_list.county_of_decedent,'Hoke', 'Hoke');addOption(document.drop_list.county_of_decedent,'Hyde', 'Hyde');addOption(document.drop_list.county_of_decedent,'Iredell', 'Iredell');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Johnston', 'Johnston');addOption(document.drop_list.county_of_decedent,'Jones', 'Jones');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Lenoir', 'Lenoir');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Macon', 'Macon');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Martin', 'Martin');addOption(document.drop_list.county_of_decedent,'McDowell', 'McDowell');addOption(document.drop_list.county_of_decedent,'Mecklenburg', 'Mecklenburg');addOption(document.drop_list.county_of_decedent,'Mitchell', 'Mitchell');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Moore', 'Moore');addOption(document.drop_list.county_of_decedent,'Nash', 'Nash');addOption(document.drop_list.county_of_decedent,'New Hanover', 'New Hanover');addOption(document.drop_list.county_of_decedent,'Northampton', 'Northampton');addOption(document.drop_list.county_of_decedent,'Onslow', 'Onslow');addOption(document.drop_list.county_of_decedent,'Orange', 'Orange');addOption(document.drop_list.county_of_decedent,'Pamlico', 'Pamlico');addOption(document.drop_list.county_of_decedent,'Pasquotank', 'Pasquotank');addOption(document.drop_list.county_of_decedent,'Pender', 'Pender');addOption(document.drop_list.county_of_decedent,'Perquimans', 'Perquimans');addOption(document.drop_list.county_of_decedent,'Person', 'Person');addOption(document.drop_list.county_of_decedent,'Pitt', 'Pitt');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Randolph', 'Randolph');addOption(document.drop_list.county_of_decedent,'Richmond', 'Richmond');addOption(document.drop_list.county_of_decedent,'Robeson', 'Robeson');addOption(document.drop_list.county_of_decedent,'Rockingham', 'Rockingham');addOption(document.drop_list.county_of_decedent,'Rowan', 'Rowan');addOption(document.drop_list.county_of_decedent,'Rutherford', 'Rutherford');addOption(document.drop_list.county_of_decedent,'Sampson', 'Sampson');addOption(document.drop_list.county_of_decedent,'Scotland', 'Scotland');addOption(document.drop_list.county_of_decedent,'Stanly', 'Stanly');addOption(document.drop_list.county_of_decedent,'Stokes', 'Stokes');addOption(document.drop_list.county_of_decedent,'Surry', 'Surry');addOption(document.drop_list.county_of_decedent,'Swain', 'Swain');addOption(document.drop_list.county_of_decedent,'Transylvania', 'Transylvania');addOption(document.drop_list.county_of_decedent,'Tyrrell', 'Tyrrell');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Vance', 'Vance');addOption(document.drop_list.county_of_decedent,'Wake', 'Wake');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Watauga', 'Watauga');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Wilkes', 'Wilkes');addOption(document.drop_list.county_of_decedent,'Wilson', 'Wilson');addOption(document.drop_list.county_of_decedent,'Yadkin', 'Yadkin');addOption(document.drop_list.county_of_decedent,'Yancey', 'Yancey');}if(document.drop_list.state_of_decedent.value == 'northdakota'){addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Barnes', 'Barnes');addOption(document.drop_list.county_of_decedent,'Benson', 'Benson');addOption(document.drop_list.county_of_decedent,'Billings', 'Billings');addOption(document.drop_list.county_of_decedent,'Bottineau', 'Bottineau');addOption(document.drop_list.county_of_decedent,'Bowman', 'Bowman');addOption(document.drop_list.county_of_decedent,'Burke', 'Burke');addOption(document.drop_list.county_of_decedent,'Burleigh', 'Burleigh');addOption(document.drop_list.county_of_decedent,'Cass', 'Cass');addOption(document.drop_list.county_of_decedent,'Cavalier', 'Cavalier');addOption(document.drop_list.county_of_decedent,'Dickey', 'Dickey');addOption(document.drop_list.county_of_decedent,'Divide', 'Divide');addOption(document.drop_list.county_of_decedent,'Dunn', 'Dunn');addOption(document.drop_list.county_of_decedent,'Eddy', 'Eddy');addOption(document.drop_list.county_of_decedent,'Emmons', 'Emmons');addOption(document.drop_list.county_of_decedent,'Foster', 'Foster');addOption(document.drop_list.county_of_decedent,'Golden Valley', 'Golden Valley');addOption(document.drop_list.county_of_decedent,'Grand Forks', 'Grand Forks');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Griggs', 'Griggs');addOption(document.drop_list.county_of_decedent,'Hettinger', 'Hettinger');addOption(document.drop_list.county_of_decedent,'Kidder', 'Kidder');addOption(document.drop_list.county_of_decedent,'Lamoure', 'Lamoure');addOption(document.drop_list.county_of_decedent,'Logan', 'Logan');addOption(document.drop_list.county_of_decedent,'McHenry', 'McHenry');addOption(document.drop_list.county_of_decedent,'McIntosh', 'McIntosh');addOption(document.drop_list.county_of_decedent,'McKenzie', 'McKenzie');addOption(document.drop_list.county_of_decedent,'McLean', 'McLean');addOption(document.drop_list.county_of_decedent,'Mercer', 'Mercer');addOption(document.drop_list.county_of_decedent,'Morton', 'Morton');addOption(document.drop_list.county_of_decedent,'Mountrail', 'Mountrail');addOption(document.drop_list.county_of_decedent,'Nelson', 'Nelson');addOption(document.drop_list.county_of_decedent,'Oliver', 'Oliver');addOption(document.drop_list.county_of_decedent,'Pembina', 'Pembina');addOption(document.drop_list.county_of_decedent,'Pierce', 'Pierce');addOption(document.drop_list.county_of_decedent,'Ramsey', 'Ramsey');addOption(document.drop_list.county_of_decedent,'Ransom', 'Ransom');addOption(document.drop_list.county_of_decedent,'Renville', 'Renville');addOption(document.drop_list.county_of_decedent,'Richland', 'Richland');addOption(document.drop_list.county_of_decedent,'Rolette', 'Rolette');addOption(document.drop_list.county_of_decedent,'Sargent', 'Sargent');addOption(document.drop_list.county_of_decedent,'Sheridan', 'Sheridan');addOption(document.drop_list.county_of_decedent,'Sioux', 'Sioux');addOption(document.drop_list.county_of_decedent,'Slope', 'Slope');addOption(document.drop_list.county_of_decedent,'Stark', 'Stark');addOption(document.drop_list.county_of_decedent,'Steele', 'Steele');addOption(document.drop_list.county_of_decedent,'Stutsman', 'Stutsman');addOption(document.drop_list.county_of_decedent,'Towner', 'Towner');addOption(document.drop_list.county_of_decedent,'Traill', 'Traill');addOption(document.drop_list.county_of_decedent,'Walsh', 'Walsh');addOption(document.drop_list.county_of_decedent,'Ward', 'Ward');addOption(document.drop_list.county_of_decedent,'Wells', 'Wells');addOption(document.drop_list.county_of_decedent,'Williams', 'Williams');}if(document.drop_list.state_of_decedent.value == 'northernmarianaislands'){addOption(document.drop_list.county_of_decedent,'Northern Mariana Islands', 'Northern Mariana Islands');}if(document.drop_list.state_of_decedent.value == 'ohio'){addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Allen', 'Allen');addOption(document.drop_list.county_of_decedent,'Ashland', 'Ashland');addOption(document.drop_list.county_of_decedent,'Ashtabula', 'Ashtabula');addOption(document.drop_list.county_of_decedent,'Athens', 'Athens');addOption(document.drop_list.county_of_decedent,'Auglaize', 'Auglaize');addOption(document.drop_list.county_of_decedent,'Belmont', 'Belmont');addOption(document.drop_list.county_of_decedent,'Brown', 'Brown');addOption(document.drop_list.county_of_decedent,'Butler', 'Butler');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Champaign', 'Champaign');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Clermont', 'Clermont');addOption(document.drop_list.county_of_decedent,'Clinton', 'Clinton');addOption(document.drop_list.county_of_decedent,'Columbiana', 'Columbiana');addOption(document.drop_list.county_of_decedent,'Coshocton', 'Coshocton');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Cuyahoga', 'Cuyahoga');addOption(document.drop_list.county_of_decedent,'Darke', 'Darke');addOption(document.drop_list.county_of_decedent,'Defiance', 'Defiance');addOption(document.drop_list.county_of_decedent,'Delaware', 'Delaware');addOption(document.drop_list.county_of_decedent,'Erie', 'Erie');addOption(document.drop_list.county_of_decedent,'Fairfield', 'Fairfield');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Fulton', 'Fulton');addOption(document.drop_list.county_of_decedent,'Gallia', 'Gallia');addOption(document.drop_list.county_of_decedent,'Geauga', 'Geauga');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Guernsey', 'Guernsey');addOption(document.drop_list.county_of_decedent,'Hamilton', 'Hamilton');addOption(document.drop_list.county_of_decedent,'Hancock', 'Hancock');addOption(document.drop_list.county_of_decedent,'Hardin', 'Hardin');addOption(document.drop_list.county_of_decedent,'Harrison', 'Harrison');addOption(document.drop_list.county_of_decedent,'Henry', 'Henry');addOption(document.drop_list.county_of_decedent,'Highland', 'Highland');addOption(document.drop_list.county_of_decedent,'Hocking', 'Hocking');addOption(document.drop_list.county_of_decedent,'Holmes', 'Holmes');addOption(document.drop_list.county_of_decedent,'Huron', 'Huron');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Knox', 'Knox');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Licking', 'Licking');addOption(document.drop_list.county_of_decedent,'Logan', 'Logan');addOption(document.drop_list.county_of_decedent,'Lorain', 'Lorain');addOption(document.drop_list.county_of_decedent,'Lucas', 'Lucas');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Mahoning', 'Mahoning');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Medina', 'Medina');addOption(document.drop_list.county_of_decedent,'Meigs', 'Meigs');addOption(document.drop_list.county_of_decedent,'Mercer', 'Mercer');addOption(document.drop_list.county_of_decedent,'Miami', 'Miami');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'Morrow', 'Morrow');addOption(document.drop_list.county_of_decedent,'Muskingum', 'Muskingum');addOption(document.drop_list.county_of_decedent,'Noble', 'Noble');addOption(document.drop_list.county_of_decedent,'Ottawa', 'Ottawa');addOption(document.drop_list.county_of_decedent,'Paulding', 'Paulding');addOption(document.drop_list.county_of_decedent,'Perry', 'Perry');addOption(document.drop_list.county_of_decedent,'Pickaway', 'Pickaway');addOption(document.drop_list.county_of_decedent,'Pike', 'Pike');addOption(document.drop_list.county_of_decedent,'Portage', 'Portage');addOption(document.drop_list.county_of_decedent,'Preble', 'Preble');addOption(document.drop_list.county_of_decedent,'Putnam', 'Putnam');addOption(document.drop_list.county_of_decedent,'Richland', 'Richland');addOption(document.drop_list.county_of_decedent,'Ross', 'Ross');addOption(document.drop_list.county_of_decedent,'Sandusky', 'Sandusky');addOption(document.drop_list.county_of_decedent,'Scioto', 'Scioto');addOption(document.drop_list.county_of_decedent,'Seneca', 'Seneca');addOption(document.drop_list.county_of_decedent,'Shelby', 'Shelby');addOption(document.drop_list.county_of_decedent,'Stark', 'Stark');addOption(document.drop_list.county_of_decedent,'Summit', 'Summit');addOption(document.drop_list.county_of_decedent,'Trumbull', 'Trumbull');addOption(document.drop_list.county_of_decedent,'Tuscarawas', 'Tuscarawas');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Van Wert', 'Van Wert');addOption(document.drop_list.county_of_decedent,'Vinton', 'Vinton');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Williams', 'Williams');addOption(document.drop_list.county_of_decedent,'Wood', 'Wood');addOption(document.drop_list.county_of_decedent,'Wyandot', 'Wyandot');}if(document.drop_list.state_of_decedent.value == 'oklahoma'){addOption(document.drop_list.county_of_decedent,'Adair', 'Adair');addOption(document.drop_list.county_of_decedent,'Alfalfa', 'Alfalfa');addOption(document.drop_list.county_of_decedent,'Atoka', 'Atoka');addOption(document.drop_list.county_of_decedent,'Beaver', 'Beaver');addOption(document.drop_list.county_of_decedent,'Beckham', 'Beckham');addOption(document.drop_list.county_of_decedent,'Blaine', 'Blaine');addOption(document.drop_list.county_of_decedent,'Bryan', 'Bryan');addOption(document.drop_list.county_of_decedent,'Caddo', 'Caddo');addOption(document.drop_list.county_of_decedent,'Canadian', 'Canadian');addOption(document.drop_list.county_of_decedent,'Carter', 'Carter');addOption(document.drop_list.county_of_decedent,'Cherokee', 'Cherokee');addOption(document.drop_list.county_of_decedent,'Choctaw', 'Choctaw');addOption(document.drop_list.county_of_decedent,'Cimarron', 'Cimarron');addOption(document.drop_list.county_of_decedent,'Cleveland', 'Cleveland');addOption(document.drop_list.county_of_decedent,'Coal', 'Coal');addOption(document.drop_list.county_of_decedent,'Comanche', 'Comanche');addOption(document.drop_list.county_of_decedent,'Cotton', 'Cotton');addOption(document.drop_list.county_of_decedent,'Craig', 'Craig');addOption(document.drop_list.county_of_decedent,'Creek', 'Creek');addOption(document.drop_list.county_of_decedent,'Custer', 'Custer');addOption(document.drop_list.county_of_decedent,'Delaware', 'Delaware');addOption(document.drop_list.county_of_decedent,'Dewey', 'Dewey');addOption(document.drop_list.county_of_decedent,'Ellis', 'Ellis');addOption(document.drop_list.county_of_decedent,'Garfield', 'Garfield');addOption(document.drop_list.county_of_decedent,'Garvin', 'Garvin');addOption(document.drop_list.county_of_decedent,'Grady', 'Grady');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Greer', 'Greer');addOption(document.drop_list.county_of_decedent,'Harmon', 'Harmon');addOption(document.drop_list.county_of_decedent,'Harper', 'Harper');addOption(document.drop_list.county_of_decedent,'Haskell', 'Haskell');addOption(document.drop_list.county_of_decedent,'Hughes', 'Hughes');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Johnston', 'Johnston');addOption(document.drop_list.county_of_decedent,'Kay', 'Kay');addOption(document.drop_list.county_of_decedent,'Kingfisher', 'Kingfisher');addOption(document.drop_list.county_of_decedent,'Kiowa', 'Kiowa');addOption(document.drop_list.county_of_decedent,'Latimer', 'Latimer');addOption(document.drop_list.county_of_decedent,'Le Flore', 'Le Flore');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Logan', 'Logan');addOption(document.drop_list.county_of_decedent,'Love', 'Love');addOption(document.drop_list.county_of_decedent,'Major', 'Major');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'Mayes', 'Mayes');addOption(document.drop_list.county_of_decedent,'McClain', 'McClain');addOption(document.drop_list.county_of_decedent,'McCurtain', 'McCurtain');addOption(document.drop_list.county_of_decedent,'McIntosh', 'McIntosh');addOption(document.drop_list.county_of_decedent,'Murray', 'Murray');addOption(document.drop_list.county_of_decedent,'Muskogee', 'Muskogee');addOption(document.drop_list.county_of_decedent,'Noble', 'Noble');addOption(document.drop_list.county_of_decedent,'Nowata', 'Nowata');addOption(document.drop_list.county_of_decedent,'Okfuskee', 'Okfuskee');addOption(document.drop_list.county_of_decedent,'Oklahoma', 'Oklahoma');addOption(document.drop_list.county_of_decedent,'Okmulgee', 'Okmulgee');addOption(document.drop_list.county_of_decedent,'Osage', 'Osage');addOption(document.drop_list.county_of_decedent,'Ottawa', 'Ottawa');addOption(document.drop_list.county_of_decedent,'Pawnee', 'Pawnee');addOption(document.drop_list.county_of_decedent,'Payne', 'Payne');addOption(document.drop_list.county_of_decedent,'Pittsburg', 'Pittsburg');addOption(document.drop_list.county_of_decedent,'Pontotoc', 'Pontotoc');addOption(document.drop_list.county_of_decedent,'Pottawatomie', 'Pottawatomie');addOption(document.drop_list.county_of_decedent,'Pushmataha', 'Pushmataha');addOption(document.drop_list.county_of_decedent,'Roger Mills', 'Roger Mills');addOption(document.drop_list.county_of_decedent,'Rogers', 'Rogers');addOption(document.drop_list.county_of_decedent,'Seminole', 'Seminole');addOption(document.drop_list.county_of_decedent,'Sequoyah', 'Sequoyah');addOption(document.drop_list.county_of_decedent,'Stephens', 'Stephens');addOption(document.drop_list.county_of_decedent,'Texas', 'Texas');addOption(document.drop_list.county_of_decedent,'Tillman', 'Tillman');addOption(document.drop_list.county_of_decedent,'Tulsa', 'Tulsa');addOption(document.drop_list.county_of_decedent,'Wagoner', 'Wagoner');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Washita', 'Washita');addOption(document.drop_list.county_of_decedent,'Woods', 'Woods');addOption(document.drop_list.county_of_decedent,'Woodward', 'Woodward');}if(document.drop_list.state_of_decedent.value == 'oregon'){addOption(document.drop_list.county_of_decedent,'Baker', 'Baker');addOption(document.drop_list.county_of_decedent,'Benton', 'Benton');addOption(document.drop_list.county_of_decedent,'Clackamas', 'Clackamas');addOption(document.drop_list.county_of_decedent,'Clatsop', 'Clatsop');addOption(document.drop_list.county_of_decedent,'Columbia', 'Columbia');addOption(document.drop_list.county_of_decedent,'Coos', 'Coos');addOption(document.drop_list.county_of_decedent,'Crook', 'Crook');addOption(document.drop_list.county_of_decedent,'Curry', 'Curry');addOption(document.drop_list.county_of_decedent,'Deschutes', 'Deschutes');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Gilliam', 'Gilliam');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Harney', 'Harney');addOption(document.drop_list.county_of_decedent,'Hood River', 'Hood River');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Josephine', 'Josephine');addOption(document.drop_list.county_of_decedent,'Klamath', 'Klamath');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lane', 'Lane');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Linn', 'Linn');addOption(document.drop_list.county_of_decedent,'Malheur', 'Malheur');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Morrow', 'Morrow');addOption(document.drop_list.county_of_decedent,'Multnomah', 'Multnomah');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Sherman', 'Sherman');addOption(document.drop_list.county_of_decedent,'Tillamook', 'Tillamook');addOption(document.drop_list.county_of_decedent,'Umatilla', 'Umatilla');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Wallowa', 'Wallowa');addOption(document.drop_list.county_of_decedent,'Wasco', 'Wasco');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wheeler', 'Wheeler');addOption(document.drop_list.county_of_decedent,'Yamhill', 'Yamhill');}if(document.drop_list.state_of_decedent.value == 'palau'){addOption(document.drop_list.county_of_decedent,'Palau', 'Palau');}if(document.drop_list.state_of_decedent.value == 'pennsylvania'){addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Allegheny', 'Allegheny');addOption(document.drop_list.county_of_decedent,'Armstrong', 'Armstrong');addOption(document.drop_list.county_of_decedent,'Beaver', 'Beaver');addOption(document.drop_list.county_of_decedent,'Bedford', 'Bedford');addOption(document.drop_list.county_of_decedent,'Berks', 'Berks');addOption(document.drop_list.county_of_decedent,'Blair', 'Blair');addOption(document.drop_list.county_of_decedent,'Bradford', 'Bradford');addOption(document.drop_list.county_of_decedent,'Bucks', 'Bucks');addOption(document.drop_list.county_of_decedent,'Butler', 'Butler');addOption(document.drop_list.county_of_decedent,'Cambria', 'Cambria');addOption(document.drop_list.county_of_decedent,'Cameron', 'Cameron');addOption(document.drop_list.county_of_decedent,'Carbon', 'Carbon');addOption(document.drop_list.county_of_decedent,'Centre', 'Centre');addOption(document.drop_list.county_of_decedent,'Chester', 'Chester');addOption(document.drop_list.county_of_decedent,'Clarion', 'Clarion');addOption(document.drop_list.county_of_decedent,'Clearfield', 'Clearfield');addOption(document.drop_list.county_of_decedent,'Clinton', 'Clinton');addOption(document.drop_list.county_of_decedent,'Columbia', 'Columbia');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Cumberland', 'Cumberland');addOption(document.drop_list.county_of_decedent,'Dauphin', 'Dauphin');addOption(document.drop_list.county_of_decedent,'Delaware', 'Delaware');addOption(document.drop_list.county_of_decedent,'Elk', 'Elk');addOption(document.drop_list.county_of_decedent,'Erie', 'Erie');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Forest', 'Forest');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Fulton', 'Fulton');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Huntingdon', 'Huntingdon');addOption(document.drop_list.county_of_decedent,'Indiana', 'Indiana');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Juniata', 'Juniata');addOption(document.drop_list.county_of_decedent,'Lackawanna', 'Lackawanna');addOption(document.drop_list.county_of_decedent,'Lancaster', 'Lancaster');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Lebanon', 'Lebanon');addOption(document.drop_list.county_of_decedent,'Lehigh', 'Lehigh');addOption(document.drop_list.county_of_decedent,'Luzerne', 'Luzerne');addOption(document.drop_list.county_of_decedent,'Lycoming', 'Lycoming');addOption(document.drop_list.county_of_decedent,'McKean', 'McKean');addOption(document.drop_list.county_of_decedent,'Mercer', 'Mercer');addOption(document.drop_list.county_of_decedent,'Mifflin', 'Mifflin');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Montour', 'Montour');addOption(document.drop_list.county_of_decedent,'Northampton', 'Northampton');addOption(document.drop_list.county_of_decedent,'Northumberland', 'Northumberland');addOption(document.drop_list.county_of_decedent,'Perry', 'Perry');addOption(document.drop_list.county_of_decedent,'Philadelphia', 'Philadelphia');addOption(document.drop_list.county_of_decedent,'Pike', 'Pike');addOption(document.drop_list.county_of_decedent,'Potter', 'Potter');addOption(document.drop_list.county_of_decedent,'Schuylkill', 'Schuylkill');addOption(document.drop_list.county_of_decedent,'Snyder', 'Snyder');addOption(document.drop_list.county_of_decedent,'Somerset', 'Somerset');addOption(document.drop_list.county_of_decedent,'Sullivan', 'Sullivan');addOption(document.drop_list.county_of_decedent,'Susquehanna', 'Susquehanna');addOption(document.drop_list.county_of_decedent,'Tioga', 'Tioga');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Venango', 'Venango');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Westmoreland', 'Westmoreland');addOption(document.drop_list.county_of_decedent,'Wyoming', 'Wyoming');addOption(document.drop_list.county_of_decedent,'York', 'York');}if(document.drop_list.state_of_decedent.value == 'puertorico'){addOption(document.drop_list.county_of_decedent,'Adjuntas', 'Adjuntas');addOption(document.drop_list.county_of_decedent,'Aguada', 'Aguada');addOption(document.drop_list.county_of_decedent,'Aguadilla', 'Aguadilla');addOption(document.drop_list.county_of_decedent,'Aguas Buenas', 'Aguas Buenas');addOption(document.drop_list.county_of_decedent,'Aibonito', 'Aibonito');addOption(document.drop_list.county_of_decedent,'Anasco', 'Anasco');addOption(document.drop_list.county_of_decedent,'Arecibo', 'Arecibo');addOption(document.drop_list.county_of_decedent,'Arroyo', 'Arroyo');addOption(document.drop_list.county_of_decedent,'Barceloneta', 'Barceloneta');addOption(document.drop_list.county_of_decedent,'Barranquitas', 'Barranquitas');addOption(document.drop_list.county_of_decedent,'Bayamon', 'Bayamon');addOption(document.drop_list.county_of_decedent,'Cabo Rojo', 'Cabo Rojo');addOption(document.drop_list.county_of_decedent,'Caguas', 'Caguas');addOption(document.drop_list.county_of_decedent,'Camuy', 'Camuy');addOption(document.drop_list.county_of_decedent,'Canovanas', 'Canovanas');addOption(document.drop_list.county_of_decedent,'Carolina', 'Carolina');addOption(document.drop_list.county_of_decedent,'Catano', 'Catano');addOption(document.drop_list.county_of_decedent,'Cayey', 'Cayey');addOption(document.drop_list.county_of_decedent,'Ceiba', 'Ceiba');addOption(document.drop_list.county_of_decedent,'Ciales', 'Ciales');addOption(document.drop_list.county_of_decedent,'Cidra', 'Cidra');addOption(document.drop_list.county_of_decedent,'Coamo', 'Coamo');addOption(document.drop_list.county_of_decedent,'Comerio', 'Comerio');addOption(document.drop_list.county_of_decedent,'Corozal', 'Corozal');addOption(document.drop_list.county_of_decedent,'Culebra', 'Culebra');addOption(document.drop_list.county_of_decedent,'Dorado', 'Dorado');addOption(document.drop_list.county_of_decedent,'Fajardo', 'Fajardo');addOption(document.drop_list.county_of_decedent,'Florida', 'Florida');addOption(document.drop_list.county_of_decedent,'Guanica', 'Guanica');addOption(document.drop_list.county_of_decedent,'Guayama', 'Guayama');addOption(document.drop_list.county_of_decedent,'Guayanilla', 'Guayanilla');addOption(document.drop_list.county_of_decedent,'Guaynabo', 'Guaynabo');addOption(document.drop_list.county_of_decedent,'Gurabo', 'Gurabo');addOption(document.drop_list.county_of_decedent,'Hatillo', 'Hatillo');addOption(document.drop_list.county_of_decedent,'Hormigueros', 'Hormigueros');addOption(document.drop_list.county_of_decedent,'Humacao', 'Humacao');addOption(document.drop_list.county_of_decedent,'Isabela', 'Isabela');addOption(document.drop_list.county_of_decedent,'Jayuya', 'Jayuya');addOption(document.drop_list.county_of_decedent,'Juana Diaz', 'Juana Diaz');addOption(document.drop_list.county_of_decedent,'Juncos', 'Juncos');addOption(document.drop_list.county_of_decedent,'Lajas', 'Lajas');addOption(document.drop_list.county_of_decedent,'Lares', 'Lares');addOption(document.drop_list.county_of_decedent,'Las Marias', 'Las Marias');addOption(document.drop_list.county_of_decedent,'Las Piedras', 'Las Piedras');addOption(document.drop_list.county_of_decedent,'Loiza', 'Loiza');addOption(document.drop_list.county_of_decedent,'Luquillo', 'Luquillo');addOption(document.drop_list.county_of_decedent,'Manati', 'Manati');addOption(document.drop_list.county_of_decedent,'Maricao', 'Maricao');addOption(document.drop_list.county_of_decedent,'Maunabo', 'Maunabo');addOption(document.drop_list.county_of_decedent,'Mayaguez', 'Mayaguez');addOption(document.drop_list.county_of_decedent,'Moca', 'Moca');addOption(document.drop_list.county_of_decedent,'Morovis', 'Morovis');addOption(document.drop_list.county_of_decedent,'Naguabo', 'Naguabo');addOption(document.drop_list.county_of_decedent,'Naranjito', 'Naranjito');addOption(document.drop_list.county_of_decedent,'Orocovis', 'Orocovis');addOption(document.drop_list.county_of_decedent,'Patillas', 'Patillas');addOption(document.drop_list.county_of_decedent,'Penuelas', 'Penuelas');addOption(document.drop_list.county_of_decedent,'Ponce', 'Ponce');addOption(document.drop_list.county_of_decedent,'Quebradillas', 'Quebradillas');addOption(document.drop_list.county_of_decedent,'Rincon', 'Rincon');addOption(document.drop_list.county_of_decedent,'Rio Grande', 'Rio Grande');addOption(document.drop_list.county_of_decedent,'Sabana Grande', 'Sabana Grande');addOption(document.drop_list.county_of_decedent,'Salinas', 'Salinas');addOption(document.drop_list.county_of_decedent,'San German', 'San German');addOption(document.drop_list.county_of_decedent,'San Juan', 'San Juan');addOption(document.drop_list.county_of_decedent,'San Lorenzo', 'San Lorenzo');addOption(document.drop_list.county_of_decedent,'San Sebastian', 'San Sebastian');addOption(document.drop_list.county_of_decedent,'Santa Isabel', 'Santa Isabel');addOption(document.drop_list.county_of_decedent,'Toa Alta', 'Toa Alta');addOption(document.drop_list.county_of_decedent,'Toa Baja', 'Toa Baja');addOption(document.drop_list.county_of_decedent,'Trujillo Alto', 'Trujillo Alto');addOption(document.drop_list.county_of_decedent,'Utuado', 'Utuado');addOption(document.drop_list.county_of_decedent,'Vega Alta', 'Vega Alta');addOption(document.drop_list.county_of_decedent,'Vega Baja', 'Vega Baja');addOption(document.drop_list.county_of_decedent,'Vieques', 'Vieques');addOption(document.drop_list.county_of_decedent,'Villalba', 'Villalba');addOption(document.drop_list.county_of_decedent,'Yabucoa', 'Yabucoa');addOption(document.drop_list.county_of_decedent,'Yauco', 'Yauco');}if(document.drop_list.state_of_decedent.value == 'rhodeisland'){addOption(document.drop_list.county_of_decedent,'Bristol', 'Bristol');addOption(document.drop_list.county_of_decedent,'Kent', 'Kent');addOption(document.drop_list.county_of_decedent,'Newport', 'Newport');addOption(document.drop_list.county_of_decedent,'Providence', 'Providence');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');}if(document.drop_list.state_of_decedent.value == 'southcarolina'){addOption(document.drop_list.county_of_decedent,'Abbeville', 'Abbeville');addOption(document.drop_list.county_of_decedent,'Aiken', 'Aiken');addOption(document.drop_list.county_of_decedent,'Allendale', 'Allendale');addOption(document.drop_list.county_of_decedent,'Anderson', 'Anderson');addOption(document.drop_list.county_of_decedent,'Bamberg', 'Bamberg');addOption(document.drop_list.county_of_decedent,'Barnwell', 'Barnwell');addOption(document.drop_list.county_of_decedent,'Beaufort', 'Beaufort');addOption(document.drop_list.county_of_decedent,'Berkeley', 'Berkeley');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Charleston', 'Charleston');addOption(document.drop_list.county_of_decedent,'Cherokee', 'Cherokee');addOption(document.drop_list.county_of_decedent,'Chester', 'Chester');addOption(document.drop_list.county_of_decedent,'Chesterfield', 'Chesterfield');addOption(document.drop_list.county_of_decedent,'Clarendon', 'Clarendon');addOption(document.drop_list.county_of_decedent,'Colleton', 'Colleton');addOption(document.drop_list.county_of_decedent,'Darlington', 'Darlington');addOption(document.drop_list.county_of_decedent,'Dillon', 'Dillon');addOption(document.drop_list.county_of_decedent,'Dorchester', 'Dorchester');addOption(document.drop_list.county_of_decedent,'Edgefield', 'Edgefield');addOption(document.drop_list.county_of_decedent,'Fairfield', 'Fairfield');addOption(document.drop_list.county_of_decedent,'Florence', 'Florence');addOption(document.drop_list.county_of_decedent,'Georgetown', 'Georgetown');addOption(document.drop_list.county_of_decedent,'Greenville', 'Greenville');addOption(document.drop_list.county_of_decedent,'Greenwood', 'Greenwood');addOption(document.drop_list.county_of_decedent,'Hampton', 'Hampton');addOption(document.drop_list.county_of_decedent,'Horry', 'Horry');addOption(document.drop_list.county_of_decedent,'Jasper', 'Jasper');addOption(document.drop_list.county_of_decedent,'Kershaw', 'Kershaw');addOption(document.drop_list.county_of_decedent,'Lancaster', 'Lancaster');addOption(document.drop_list.county_of_decedent,'Laurens', 'Laurens');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Lexington', 'Lexington');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Marlboro', 'Marlboro');addOption(document.drop_list.county_of_decedent,'McCormick', 'McCormick');addOption(document.drop_list.county_of_decedent,'Newberry', 'Newberry');addOption(document.drop_list.county_of_decedent,'Oconee', 'Oconee');addOption(document.drop_list.county_of_decedent,'Orangeburg', 'Orangeburg');addOption(document.drop_list.county_of_decedent,'Pickens', 'Pickens');addOption(document.drop_list.county_of_decedent,'Richland', 'Richland');addOption(document.drop_list.county_of_decedent,'Saluda', 'Saluda');addOption(document.drop_list.county_of_decedent,'Spartanburg', 'Spartanburg');addOption(document.drop_list.county_of_decedent,'Sumter', 'Sumter');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Williamsburg', 'Williamsburg');addOption(document.drop_list.county_of_decedent,'York', 'York');}if(document.drop_list.state_of_decedent.value == 'southdakota'){addOption(document.drop_list.county_of_decedent,'Aurora', 'Aurora');addOption(document.drop_list.county_of_decedent,'Beadle', 'Beadle');addOption(document.drop_list.county_of_decedent,'Bennett', 'Bennett');addOption(document.drop_list.county_of_decedent,'Bon Homme', 'Bon Homme');addOption(document.drop_list.county_of_decedent,'Brookings', 'Brookings');addOption(document.drop_list.county_of_decedent,'Brown', 'Brown');addOption(document.drop_list.county_of_decedent,'Brule', 'Brule');addOption(document.drop_list.county_of_decedent,'Buffalo', 'Buffalo');addOption(document.drop_list.county_of_decedent,'Butte', 'Butte');addOption(document.drop_list.county_of_decedent,'Campbell', 'Campbell');addOption(document.drop_list.county_of_decedent,'Charles Mix', 'Charles Mix');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Codington', 'Codington');addOption(document.drop_list.county_of_decedent,'Corson', 'Corson');addOption(document.drop_list.county_of_decedent,'Custer', 'Custer');addOption(document.drop_list.county_of_decedent,'Davison', 'Davison');addOption(document.drop_list.county_of_decedent,'Day', 'Day');addOption(document.drop_list.county_of_decedent,'Deuel', 'Deuel');addOption(document.drop_list.county_of_decedent,'Dewey', 'Dewey');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Edmunds', 'Edmunds');addOption(document.drop_list.county_of_decedent,'Fall River', 'Fall River');addOption(document.drop_list.county_of_decedent,'Faulk', 'Faulk');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Gregory', 'Gregory');addOption(document.drop_list.county_of_decedent,'Haakon', 'Haakon');addOption(document.drop_list.county_of_decedent,'Hamlin', 'Hamlin');addOption(document.drop_list.county_of_decedent,'Hand', 'Hand');addOption(document.drop_list.county_of_decedent,'Hanson', 'Hanson');addOption(document.drop_list.county_of_decedent,'Harding', 'Harding');addOption(document.drop_list.county_of_decedent,'Hughes', 'Hughes');addOption(document.drop_list.county_of_decedent,'Hutchinson', 'Hutchinson');addOption(document.drop_list.county_of_decedent,'Hyde', 'Hyde');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jerauld', 'Jerauld');addOption(document.drop_list.county_of_decedent,'Jones', 'Jones');addOption(document.drop_list.county_of_decedent,'Kingsbury', 'Kingsbury');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Lyman', 'Lyman');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'McCook', 'McCook');addOption(document.drop_list.county_of_decedent,'McPherson', 'McPherson');addOption(document.drop_list.county_of_decedent,'Meade', 'Meade');addOption(document.drop_list.county_of_decedent,'Mellette', 'Mellette');addOption(document.drop_list.county_of_decedent,'Miner', 'Miner');addOption(document.drop_list.county_of_decedent,'Minnehaha', 'Minnehaha');addOption(document.drop_list.county_of_decedent,'Moody', 'Moody');addOption(document.drop_list.county_of_decedent,'Pennington', 'Pennington');addOption(document.drop_list.county_of_decedent,'Perkins', 'Perkins');addOption(document.drop_list.county_of_decedent,'Potter', 'Potter');addOption(document.drop_list.county_of_decedent,'Roberts', 'Roberts');addOption(document.drop_list.county_of_decedent,'Sanborn', 'Sanborn');addOption(document.drop_list.county_of_decedent,'Shannon', 'Shannon');addOption(document.drop_list.county_of_decedent,'Spink', 'Spink');addOption(document.drop_list.county_of_decedent,'Stanley', 'Stanley');addOption(document.drop_list.county_of_decedent,'Sully', 'Sully');addOption(document.drop_list.county_of_decedent,'Todd', 'Todd');addOption(document.drop_list.county_of_decedent,'Tripp', 'Tripp');addOption(document.drop_list.county_of_decedent,'Turner', 'Turner');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Walworth', 'Walworth');addOption(document.drop_list.county_of_decedent,'Yankton', 'Yankton');addOption(document.drop_list.county_of_decedent,'Ziebach', 'Ziebach');}if(document.drop_list.state_of_decedent.value == 'statename'){addOption(document.drop_list.county_of_decedent,'CountyName', 'CountyName');}if(document.drop_list.state_of_decedent.value == 'tennessee'){addOption(document.drop_list.county_of_decedent,'Anderson', 'Anderson');addOption(document.drop_list.county_of_decedent,'Bedford', 'Bedford');addOption(document.drop_list.county_of_decedent,'Benton', 'Benton');addOption(document.drop_list.county_of_decedent,'Bledsoe', 'Bledsoe');addOption(document.drop_list.county_of_decedent,'Blount', 'Blount');addOption(document.drop_list.county_of_decedent,'Bradley', 'Bradley');addOption(document.drop_list.county_of_decedent,'Campbell', 'Campbell');addOption(document.drop_list.county_of_decedent,'Cannon', 'Cannon');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Carter', 'Carter');addOption(document.drop_list.county_of_decedent,'Cheatham', 'Cheatham');addOption(document.drop_list.county_of_decedent,'Chester', 'Chester');addOption(document.drop_list.county_of_decedent,'Claiborne', 'Claiborne');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Cocke', 'Cocke');addOption(document.drop_list.county_of_decedent,'Coffee', 'Coffee');addOption(document.drop_list.county_of_decedent,'Crockett', 'Crockett');addOption(document.drop_list.county_of_decedent,'Cumberland', 'Cumberland');addOption(document.drop_list.county_of_decedent,'Davidson', 'Davidson');addOption(document.drop_list.county_of_decedent,'Decatur', 'Decatur');addOption(document.drop_list.county_of_decedent,'Dekalb', 'Dekalb');addOption(document.drop_list.county_of_decedent,'Dickson', 'Dickson');addOption(document.drop_list.county_of_decedent,'Dyer', 'Dyer');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Fentress', 'Fentress');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Gibson', 'Gibson');addOption(document.drop_list.county_of_decedent,'Giles', 'Giles');addOption(document.drop_list.county_of_decedent,'Grainger', 'Grainger');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Grundy', 'Grundy');addOption(document.drop_list.county_of_decedent,'Hamblen', 'Hamblen');addOption(document.drop_list.county_of_decedent,'Hamilton', 'Hamilton');addOption(document.drop_list.county_of_decedent,'Hancock', 'Hancock');addOption(document.drop_list.county_of_decedent,'Hardeman', 'Hardeman');addOption(document.drop_list.county_of_decedent,'Hardin', 'Hardin');addOption(document.drop_list.county_of_decedent,'Hawkins', 'Hawkins');addOption(document.drop_list.county_of_decedent,'Haywood', 'Haywood');addOption(document.drop_list.county_of_decedent,'Henderson', 'Henderson');addOption(document.drop_list.county_of_decedent,'Henry', 'Henry');addOption(document.drop_list.county_of_decedent,'Hickman', 'Hickman');addOption(document.drop_list.county_of_decedent,'Houston', 'Houston');addOption(document.drop_list.county_of_decedent,'Humphreys', 'Humphreys');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Knox', 'Knox');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lauderdale', 'Lauderdale');addOption(document.drop_list.county_of_decedent,'Lawrence', 'Lawrence');addOption(document.drop_list.county_of_decedent,'Lewis', 'Lewis');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Loudon', 'Loudon');addOption(document.drop_list.county_of_decedent,'Macon', 'Macon');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'Maury', 'Maury');addOption(document.drop_list.county_of_decedent,'McMinn', 'McMinn');addOption(document.drop_list.county_of_decedent,'McNairy', 'McNairy');addOption(document.drop_list.county_of_decedent,'Meigs', 'Meigs');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Moore', 'Moore');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'Obion', 'Obion');addOption(document.drop_list.county_of_decedent,'Overton', 'Overton');addOption(document.drop_list.county_of_decedent,'Perry', 'Perry');addOption(document.drop_list.county_of_decedent,'Pickett', 'Pickett');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Putnam', 'Putnam');addOption(document.drop_list.county_of_decedent,'Rhea', 'Rhea');addOption(document.drop_list.county_of_decedent,'Roane', 'Roane');addOption(document.drop_list.county_of_decedent,'Robertson', 'Robertson');addOption(document.drop_list.county_of_decedent,'Rutherford', 'Rutherford');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Sequatchie', 'Sequatchie');addOption(document.drop_list.county_of_decedent,'Sevier', 'Sevier');addOption(document.drop_list.county_of_decedent,'Shelby', 'Shelby');addOption(document.drop_list.county_of_decedent,'Smith', 'Smith');addOption(document.drop_list.county_of_decedent,'Stewart', 'Stewart');addOption(document.drop_list.county_of_decedent,'Sullivan', 'Sullivan');addOption(document.drop_list.county_of_decedent,'Sumner', 'Sumner');addOption(document.drop_list.county_of_decedent,'Tipton', 'Tipton');addOption(document.drop_list.county_of_decedent,'Trousdale', 'Trousdale');addOption(document.drop_list.county_of_decedent,'Unicoi', 'Unicoi');addOption(document.drop_list.county_of_decedent,'Union', 'Union');addOption(document.drop_list.county_of_decedent,'Van Buren', 'Van Buren');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Weakley', 'Weakley');addOption(document.drop_list.county_of_decedent,'White', 'White');addOption(document.drop_list.county_of_decedent,'Williamson', 'Williamson');addOption(document.drop_list.county_of_decedent,'Wilson', 'Wilson');}if(document.drop_list.state_of_decedent.value == 'texas'){addOption(document.drop_list.county_of_decedent,'Anderson', 'Anderson');addOption(document.drop_list.county_of_decedent,'Andrews', 'Andrews');addOption(document.drop_list.county_of_decedent,'Angelina', 'Angelina');addOption(document.drop_list.county_of_decedent,'Aransas', 'Aransas');addOption(document.drop_list.county_of_decedent,'Archer', 'Archer');addOption(document.drop_list.county_of_decedent,'Armstrong', 'Armstrong');addOption(document.drop_list.county_of_decedent,'Atascosa', 'Atascosa');addOption(document.drop_list.county_of_decedent,'Austin', 'Austin');addOption(document.drop_list.county_of_decedent,'Bailey', 'Bailey');addOption(document.drop_list.county_of_decedent,'Bandera', 'Bandera');addOption(document.drop_list.county_of_decedent,'Bastrop', 'Bastrop');addOption(document.drop_list.county_of_decedent,'Baylor', 'Baylor');addOption(document.drop_list.county_of_decedent,'Bee', 'Bee');addOption(document.drop_list.county_of_decedent,'Bell', 'Bell');addOption(document.drop_list.county_of_decedent,'Bexar', 'Bexar');addOption(document.drop_list.county_of_decedent,'Blanco', 'Blanco');addOption(document.drop_list.county_of_decedent,'Borden', 'Borden');addOption(document.drop_list.county_of_decedent,'Bosque', 'Bosque');addOption(document.drop_list.county_of_decedent,'Bowie', 'Bowie');addOption(document.drop_list.county_of_decedent,'Brazoria', 'Brazoria');addOption(document.drop_list.county_of_decedent,'Brazos', 'Brazos');addOption(document.drop_list.county_of_decedent,'Brewster', 'Brewster');addOption(document.drop_list.county_of_decedent,'Briscoe', 'Briscoe');addOption(document.drop_list.county_of_decedent,'Brooks', 'Brooks');addOption(document.drop_list.county_of_decedent,'Brown', 'Brown');addOption(document.drop_list.county_of_decedent,'Burleson', 'Burleson');addOption(document.drop_list.county_of_decedent,'Burnet', 'Burnet');addOption(document.drop_list.county_of_decedent,'Caldwell', 'Caldwell');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Callahan', 'Callahan');addOption(document.drop_list.county_of_decedent,'Cameron', 'Cameron');addOption(document.drop_list.county_of_decedent,'Camp', 'Camp');addOption(document.drop_list.county_of_decedent,'Carson', 'Carson');addOption(document.drop_list.county_of_decedent,'Cass', 'Cass');addOption(document.drop_list.county_of_decedent,'Castro', 'Castro');addOption(document.drop_list.county_of_decedent,'Chambers', 'Chambers');addOption(document.drop_list.county_of_decedent,'Cherokee', 'Cherokee');addOption(document.drop_list.county_of_decedent,'Childress', 'Childress');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Cochran', 'Cochran');addOption(document.drop_list.county_of_decedent,'Coke', 'Coke');addOption(document.drop_list.county_of_decedent,'Coleman', 'Coleman');addOption(document.drop_list.county_of_decedent,'Collin', 'Collin');addOption(document.drop_list.county_of_decedent,'Collingsworth', 'Collingsworth');addOption(document.drop_list.county_of_decedent,'Colorado', 'Colorado');addOption(document.drop_list.county_of_decedent,'Comal', 'Comal');addOption(document.drop_list.county_of_decedent,'Comanche', 'Comanche');addOption(document.drop_list.county_of_decedent,'Concho', 'Concho');addOption(document.drop_list.county_of_decedent,'Cooke', 'Cooke');addOption(document.drop_list.county_of_decedent,'Coryell', 'Coryell');addOption(document.drop_list.county_of_decedent,'Cottle', 'Cottle');addOption(document.drop_list.county_of_decedent,'Crane', 'Crane');addOption(document.drop_list.county_of_decedent,'Crockett', 'Crockett');addOption(document.drop_list.county_of_decedent,'Crosby', 'Crosby');addOption(document.drop_list.county_of_decedent,'Culberson', 'Culberson');addOption(document.drop_list.county_of_decedent,'Dallam', 'Dallam');addOption(document.drop_list.county_of_decedent,'Dallas', 'Dallas');addOption(document.drop_list.county_of_decedent,'Dawson', 'Dawson');addOption(document.drop_list.county_of_decedent,'De Witt', 'De Witt');addOption(document.drop_list.county_of_decedent,'Deaf Smith', 'Deaf Smith');addOption(document.drop_list.county_of_decedent,'Delta', 'Delta');addOption(document.drop_list.county_of_decedent,'Denton', 'Denton');addOption(document.drop_list.county_of_decedent,'Dickens', 'Dickens');addOption(document.drop_list.county_of_decedent,'Dimmit', 'Dimmit');addOption(document.drop_list.county_of_decedent,'Donley', 'Donley');addOption(document.drop_list.county_of_decedent,'Duval', 'Duval');addOption(document.drop_list.county_of_decedent,'Eastland', 'Eastland');addOption(document.drop_list.county_of_decedent,'Ector', 'Ector');addOption(document.drop_list.county_of_decedent,'Edwards', 'Edwards');addOption(document.drop_list.county_of_decedent,'El Paso', 'El Paso');addOption(document.drop_list.county_of_decedent,'Ellis', 'Ellis');addOption(document.drop_list.county_of_decedent,'Erath', 'Erath');addOption(document.drop_list.county_of_decedent,'Falls', 'Falls');addOption(document.drop_list.county_of_decedent,'Fannin', 'Fannin');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Fisher', 'Fisher');addOption(document.drop_list.county_of_decedent,'Floyd', 'Floyd');addOption(document.drop_list.county_of_decedent,'Foard', 'Foard');addOption(document.drop_list.county_of_decedent,'Fort Bend', 'Fort Bend');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Freestone', 'Freestone');addOption(document.drop_list.county_of_decedent,'Frio', 'Frio');addOption(document.drop_list.county_of_decedent,'Gaines', 'Gaines');addOption(document.drop_list.county_of_decedent,'Galveston', 'Galveston');addOption(document.drop_list.county_of_decedent,'Garza', 'Garza');addOption(document.drop_list.county_of_decedent,'Gillespie', 'Gillespie');addOption(document.drop_list.county_of_decedent,'Glasscock', 'Glasscock');addOption(document.drop_list.county_of_decedent,'Goliad', 'Goliad');addOption(document.drop_list.county_of_decedent,'Gonzales', 'Gonzales');addOption(document.drop_list.county_of_decedent,'Gray', 'Gray');addOption(document.drop_list.county_of_decedent,'Grayson', 'Grayson');addOption(document.drop_list.county_of_decedent,'Gregg', 'Gregg');addOption(document.drop_list.county_of_decedent,'Grimes', 'Grimes');addOption(document.drop_list.county_of_decedent,'Guadalupe', 'Guadalupe');addOption(document.drop_list.county_of_decedent,'Hale', 'Hale');addOption(document.drop_list.county_of_decedent,'Hall', 'Hall');addOption(document.drop_list.county_of_decedent,'Hamilton', 'Hamilton');addOption(document.drop_list.county_of_decedent,'Hansford', 'Hansford');addOption(document.drop_list.county_of_decedent,'Hardeman', 'Hardeman');addOption(document.drop_list.county_of_decedent,'Hardin', 'Hardin');addOption(document.drop_list.county_of_decedent,'Harris', 'Harris');addOption(document.drop_list.county_of_decedent,'Harrison', 'Harrison');addOption(document.drop_list.county_of_decedent,'Hartley', 'Hartley');addOption(document.drop_list.county_of_decedent,'Haskell', 'Haskell');addOption(document.drop_list.county_of_decedent,'Hays', 'Hays');addOption(document.drop_list.county_of_decedent,'Hemphill', 'Hemphill');addOption(document.drop_list.county_of_decedent,'Henderson', 'Henderson');addOption(document.drop_list.county_of_decedent,'Hidalgo', 'Hidalgo');addOption(document.drop_list.county_of_decedent,'Hill', 'Hill');addOption(document.drop_list.county_of_decedent,'Hockley', 'Hockley');addOption(document.drop_list.county_of_decedent,'Hood', 'Hood');addOption(document.drop_list.county_of_decedent,'Hopkins', 'Hopkins');addOption(document.drop_list.county_of_decedent,'Houston', 'Houston');addOption(document.drop_list.county_of_decedent,'Howard', 'Howard');addOption(document.drop_list.county_of_decedent,'Hudspeth', 'Hudspeth');addOption(document.drop_list.county_of_decedent,'Hunt', 'Hunt');addOption(document.drop_list.county_of_decedent,'Hutchinson', 'Hutchinson');addOption(document.drop_list.county_of_decedent,'Irion', 'Irion');addOption(document.drop_list.county_of_decedent,'Jack', 'Jack');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jasper', 'Jasper');addOption(document.drop_list.county_of_decedent,'Jeff Davis', 'Jeff Davis');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Jim Hogg', 'Jim Hogg');addOption(document.drop_list.county_of_decedent,'Jim Wells', 'Jim Wells');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Jones', 'Jones');addOption(document.drop_list.county_of_decedent,'Karnes', 'Karnes');addOption(document.drop_list.county_of_decedent,'Kaufman', 'Kaufman');addOption(document.drop_list.county_of_decedent,'Kendall', 'Kendall');addOption(document.drop_list.county_of_decedent,'Kenedy', 'Kenedy');addOption(document.drop_list.county_of_decedent,'Kent', 'Kent');addOption(document.drop_list.county_of_decedent,'Kerr', 'Kerr');addOption(document.drop_list.county_of_decedent,'Kimble', 'Kimble');addOption(document.drop_list.county_of_decedent,'King', 'King');addOption(document.drop_list.county_of_decedent,'Kinney', 'Kinney');addOption(document.drop_list.county_of_decedent,'Kleberg', 'Kleberg');addOption(document.drop_list.county_of_decedent,'Knox', 'Knox');addOption(document.drop_list.county_of_decedent,'La Salle', 'La Salle');addOption(document.drop_list.county_of_decedent,'Lamar', 'Lamar');addOption(document.drop_list.county_of_decedent,'Lamb', 'Lamb');addOption(document.drop_list.county_of_decedent,'Lampasas', 'Lampasas');addOption(document.drop_list.county_of_decedent,'Lavaca', 'Lavaca');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Leon', 'Leon');addOption(document.drop_list.county_of_decedent,'Liberty', 'Liberty');addOption(document.drop_list.county_of_decedent,'Limestone', 'Limestone');addOption(document.drop_list.county_of_decedent,'Lipscomb', 'Lipscomb');addOption(document.drop_list.county_of_decedent,'Live Oak', 'Live Oak');addOption(document.drop_list.county_of_decedent,'Llano', 'Llano');addOption(document.drop_list.county_of_decedent,'Loving', 'Loving');addOption(document.drop_list.county_of_decedent,'Lubbock', 'Lubbock');addOption(document.drop_list.county_of_decedent,'Lynn', 'Lynn');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Martin', 'Martin');addOption(document.drop_list.county_of_decedent,'Mason', 'Mason');addOption(document.drop_list.county_of_decedent,'Matagorda', 'Matagorda');addOption(document.drop_list.county_of_decedent,'Maverick', 'Maverick');addOption(document.drop_list.county_of_decedent,'McCulloch', 'McCulloch');addOption(document.drop_list.county_of_decedent,'McLennan', 'McLennan');addOption(document.drop_list.county_of_decedent,'McMullen', 'McMullen');addOption(document.drop_list.county_of_decedent,'Medina', 'Medina');addOption(document.drop_list.county_of_decedent,'Menard', 'Menard');addOption(document.drop_list.county_of_decedent,'Midland', 'Midland');addOption(document.drop_list.county_of_decedent,'Milam', 'Milam');addOption(document.drop_list.county_of_decedent,'Mills', 'Mills');addOption(document.drop_list.county_of_decedent,'Mitchell', 'Mitchell');addOption(document.drop_list.county_of_decedent,'Montague', 'Montague');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Moore', 'Moore');addOption(document.drop_list.county_of_decedent,'Morris', 'Morris');addOption(document.drop_list.county_of_decedent,'Motley', 'Motley');addOption(document.drop_list.county_of_decedent,'Nacogdoches', 'Nacogdoches');addOption(document.drop_list.county_of_decedent,'Navarro', 'Navarro');addOption(document.drop_list.county_of_decedent,'Newton', 'Newton');addOption(document.drop_list.county_of_decedent,'Nolan', 'Nolan');addOption(document.drop_list.county_of_decedent,'Nueces', 'Nueces');addOption(document.drop_list.county_of_decedent,'Ochiltree', 'Ochiltree');addOption(document.drop_list.county_of_decedent,'Oldham', 'Oldham');addOption(document.drop_list.county_of_decedent,'Orange', 'Orange');addOption(document.drop_list.county_of_decedent,'Palo Pinto', 'Palo Pinto');addOption(document.drop_list.county_of_decedent,'Panola', 'Panola');addOption(document.drop_list.county_of_decedent,'Parker', 'Parker');addOption(document.drop_list.county_of_decedent,'Parmer', 'Parmer');addOption(document.drop_list.county_of_decedent,'Pecos', 'Pecos');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Potter', 'Potter');addOption(document.drop_list.county_of_decedent,'Presidio', 'Presidio');addOption(document.drop_list.county_of_decedent,'Rains', 'Rains');addOption(document.drop_list.county_of_decedent,'Randall', 'Randall');addOption(document.drop_list.county_of_decedent,'Reagan', 'Reagan');addOption(document.drop_list.county_of_decedent,'Real', 'Real');addOption(document.drop_list.county_of_decedent,'Red River', 'Red River');addOption(document.drop_list.county_of_decedent,'Reeves', 'Reeves');addOption(document.drop_list.county_of_decedent,'Refugio', 'Refugio');addOption(document.drop_list.county_of_decedent,'Roberts', 'Roberts');addOption(document.drop_list.county_of_decedent,'Robertson', 'Robertson');addOption(document.drop_list.county_of_decedent,'Rockwall', 'Rockwall');addOption(document.drop_list.county_of_decedent,'Runnels', 'Runnels');addOption(document.drop_list.county_of_decedent,'Rusk', 'Rusk');addOption(document.drop_list.county_of_decedent,'Sabine', 'Sabine');addOption(document.drop_list.county_of_decedent,'San Augustine', 'San Augustine');addOption(document.drop_list.county_of_decedent,'San Jacinto', 'San Jacinto');addOption(document.drop_list.county_of_decedent,'San Patricio', 'San Patricio');addOption(document.drop_list.county_of_decedent,'San Saba', 'San Saba');addOption(document.drop_list.county_of_decedent,'Schleicher', 'Schleicher');addOption(document.drop_list.county_of_decedent,'Scurry', 'Scurry');addOption(document.drop_list.county_of_decedent,'Shackelford', 'Shackelford');addOption(document.drop_list.county_of_decedent,'Shelby', 'Shelby');addOption(document.drop_list.county_of_decedent,'Sherman', 'Sherman');addOption(document.drop_list.county_of_decedent,'Smith', 'Smith');addOption(document.drop_list.county_of_decedent,'Somervell', 'Somervell');addOption(document.drop_list.county_of_decedent,'Starr', 'Starr');addOption(document.drop_list.county_of_decedent,'Stephens', 'Stephens');addOption(document.drop_list.county_of_decedent,'Sterling', 'Sterling');addOption(document.drop_list.county_of_decedent,'Stonewall', 'Stonewall');addOption(document.drop_list.county_of_decedent,'Sutton', 'Sutton');addOption(document.drop_list.county_of_decedent,'Swisher', 'Swisher');addOption(document.drop_list.county_of_decedent,'Tarrant', 'Tarrant');addOption(document.drop_list.county_of_decedent,'Taylor', 'Taylor');addOption(document.drop_list.county_of_decedent,'Terrell', 'Terrell');addOption(document.drop_list.county_of_decedent,'Terry', 'Terry');addOption(document.drop_list.county_of_decedent,'Throckmorton', 'Throckmorton');addOption(document.drop_list.county_of_decedent,'Titus', 'Titus');addOption(document.drop_list.county_of_decedent,'Tom Green', 'Tom Green');addOption(document.drop_list.county_of_decedent,'Travis', 'Travis');addOption(document.drop_list.county_of_decedent,'Trinity', 'Trinity');addOption(document.drop_list.county_of_decedent,'Tyler', 'Tyler');addOption(document.drop_list.county_of_decedent,'Upshur', 'Upshur');addOption(document.drop_list.county_of_decedent,'Upton', 'Upton');addOption(document.drop_list.county_of_decedent,'Uvalde', 'Uvalde');addOption(document.drop_list.county_of_decedent,'Val Verde', 'Val Verde');addOption(document.drop_list.county_of_decedent,'Van Zandt', 'Van Zandt');addOption(document.drop_list.county_of_decedent,'Victoria', 'Victoria');addOption(document.drop_list.county_of_decedent,'Walker', 'Walker');addOption(document.drop_list.county_of_decedent,'Waller', 'Waller');addOption(document.drop_list.county_of_decedent,'Ward', 'Ward');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Webb', 'Webb');addOption(document.drop_list.county_of_decedent,'Wharton', 'Wharton');addOption(document.drop_list.county_of_decedent,'Wheeler', 'Wheeler');addOption(document.drop_list.county_of_decedent,'Wichita', 'Wichita');addOption(document.drop_list.county_of_decedent,'Wilbarger', 'Wilbarger');addOption(document.drop_list.county_of_decedent,'Willacy', 'Willacy');addOption(document.drop_list.county_of_decedent,'Williamson', 'Williamson');addOption(document.drop_list.county_of_decedent,'Wilson', 'Wilson');addOption(document.drop_list.county_of_decedent,'Winkler', 'Winkler');addOption(document.drop_list.county_of_decedent,'Wise', 'Wise');addOption(document.drop_list.county_of_decedent,'Wood', 'Wood');addOption(document.drop_list.county_of_decedent,'Yoakum', 'Yoakum');addOption(document.drop_list.county_of_decedent,'Young', 'Young');addOption(document.drop_list.county_of_decedent,'Zapata', 'Zapata');addOption(document.drop_list.county_of_decedent,'Zavala', 'Zavala');}if(document.drop_list.state_of_decedent.value == 'utah'){addOption(document.drop_list.county_of_decedent,'Beaver', 'Beaver');addOption(document.drop_list.county_of_decedent,'Box Elder', 'Box Elder');addOption(document.drop_list.county_of_decedent,'Cache', 'Cache');addOption(document.drop_list.county_of_decedent,'Carbon', 'Carbon');addOption(document.drop_list.county_of_decedent,'Daggett', 'Daggett');addOption(document.drop_list.county_of_decedent,'Davis', 'Davis');addOption(document.drop_list.county_of_decedent,'Duchesne', 'Duchesne');addOption(document.drop_list.county_of_decedent,'Emery', 'Emery');addOption(document.drop_list.county_of_decedent,'Garfield', 'Garfield');addOption(document.drop_list.county_of_decedent,'Grand', 'Grand');addOption(document.drop_list.county_of_decedent,'Iron', 'Iron');addOption(document.drop_list.county_of_decedent,'Juab', 'Juab');addOption(document.drop_list.county_of_decedent,'Kane', 'Kane');addOption(document.drop_list.county_of_decedent,'Millard', 'Millard');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'Piute', 'Piute');addOption(document.drop_list.county_of_decedent,'Rich', 'Rich');addOption(document.drop_list.county_of_decedent,'Salt Lake', 'Salt Lake');addOption(document.drop_list.county_of_decedent,'San Juan', 'San Juan');addOption(document.drop_list.county_of_decedent,'Sanpete', 'Sanpete');addOption(document.drop_list.county_of_decedent,'Sevier', 'Sevier');addOption(document.drop_list.county_of_decedent,'Summit', 'Summit');addOption(document.drop_list.county_of_decedent,'Tooele', 'Tooele');addOption(document.drop_list.county_of_decedent,'Uintah', 'Uintah');addOption(document.drop_list.county_of_decedent,'Utah', 'Utah');addOption(document.drop_list.county_of_decedent,'Wasatch', 'Wasatch');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Weber', 'Weber');}if(document.drop_list.state_of_decedent.value == 'vermont'){addOption(document.drop_list.county_of_decedent,'Addison', 'Addison');addOption(document.drop_list.county_of_decedent,'Bennington', 'Bennington');addOption(document.drop_list.county_of_decedent,'Caledonia', 'Caledonia');addOption(document.drop_list.county_of_decedent,'Chittenden', 'Chittenden');addOption(document.drop_list.county_of_decedent,'Essex', 'Essex');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Grand Isle', 'Grand Isle');addOption(document.drop_list.county_of_decedent,'Lamoille', 'Lamoille');addOption(document.drop_list.county_of_decedent,'Orange', 'Orange');addOption(document.drop_list.county_of_decedent,'Orleans', 'Orleans');addOption(document.drop_list.county_of_decedent,'Rutland', 'Rutland');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Windham', 'Windham');addOption(document.drop_list.county_of_decedent,'Windsor', 'Windsor');}if(document.drop_list.state_of_decedent.value == 'virginislands'){addOption(document.drop_list.county_of_decedent,'Saint Croix', 'Saint Croix');addOption(document.drop_list.county_of_decedent,'Saint John', 'Saint John');addOption(document.drop_list.county_of_decedent,'Saint Thomas', 'Saint Thomas');}if(document.drop_list.state_of_decedent.value == 'virginia'){addOption(document.drop_list.county_of_decedent,'Accomack', 'Accomack');addOption(document.drop_list.county_of_decedent,'Albemarle', 'Albemarle');addOption(document.drop_list.county_of_decedent,'Alexandria City', 'Alexandria City');addOption(document.drop_list.county_of_decedent,'Alleghany', 'Alleghany');addOption(document.drop_list.county_of_decedent,'Amelia', 'Amelia');addOption(document.drop_list.county_of_decedent,'Amherst', 'Amherst');addOption(document.drop_list.county_of_decedent,'Appomattox', 'Appomattox');addOption(document.drop_list.county_of_decedent,'Arlington', 'Arlington');addOption(document.drop_list.county_of_decedent,'Augusta', 'Augusta');addOption(document.drop_list.county_of_decedent,'Bath', 'Bath');addOption(document.drop_list.county_of_decedent,'Bedford', 'Bedford');addOption(document.drop_list.county_of_decedent,'Bland', 'Bland');addOption(document.drop_list.county_of_decedent,'Botetourt', 'Botetourt');addOption(document.drop_list.county_of_decedent,'Bristol', 'Bristol');addOption(document.drop_list.county_of_decedent,'Brunswick', 'Brunswick');addOption(document.drop_list.county_of_decedent,'Buchanan', 'Buchanan');addOption(document.drop_list.county_of_decedent,'Buckingham', 'Buckingham');addOption(document.drop_list.county_of_decedent,'Buena Vista City', 'Buena Vista City');addOption(document.drop_list.county_of_decedent,'Campbell', 'Campbell');addOption(document.drop_list.county_of_decedent,'Caroline', 'Caroline');addOption(document.drop_list.county_of_decedent,'Carroll', 'Carroll');addOption(document.drop_list.county_of_decedent,'Charles City', 'Charles City');addOption(document.drop_list.county_of_decedent,'Charlotte', 'Charlotte');addOption(document.drop_list.county_of_decedent,'Charlottesville City', 'Charlottesville City');addOption(document.drop_list.county_of_decedent,'Chesapeake City', 'Chesapeake City');addOption(document.drop_list.county_of_decedent,'Chesterfield', 'Chesterfield');addOption(document.drop_list.county_of_decedent,'Clarke', 'Clarke');addOption(document.drop_list.county_of_decedent,'Colonial Heights City', 'Colonial Heights City');addOption(document.drop_list.county_of_decedent,'Covington City', 'Covington City');addOption(document.drop_list.county_of_decedent,'Craig', 'Craig');addOption(document.drop_list.county_of_decedent,'Culpeper', 'Culpeper');addOption(document.drop_list.county_of_decedent,'Cumberland', 'Cumberland');addOption(document.drop_list.county_of_decedent,'Danville City', 'Danville City');addOption(document.drop_list.county_of_decedent,'Dickenson', 'Dickenson');addOption(document.drop_list.county_of_decedent,'Dinwiddie', 'Dinwiddie');addOption(document.drop_list.county_of_decedent,'Essex', 'Essex');addOption(document.drop_list.county_of_decedent,'Fairfax', 'Fairfax');addOption(document.drop_list.county_of_decedent,'Fairfax City', 'Fairfax City');addOption(document.drop_list.county_of_decedent,'Falls Church City', 'Falls Church City');addOption(document.drop_list.county_of_decedent,'Fauquier', 'Fauquier');addOption(document.drop_list.county_of_decedent,'Floyd', 'Floyd');addOption(document.drop_list.county_of_decedent,'Fluvanna', 'Fluvanna');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Franklin City', 'Franklin City');addOption(document.drop_list.county_of_decedent,'Frederick', 'Frederick');addOption(document.drop_list.county_of_decedent,'Fredericksburg City', 'Fredericksburg City');addOption(document.drop_list.county_of_decedent,'Galax City', 'Galax City');addOption(document.drop_list.county_of_decedent,'Giles', 'Giles');addOption(document.drop_list.county_of_decedent,'Gloucester', 'Gloucester');addOption(document.drop_list.county_of_decedent,'Goochland', 'Goochland');addOption(document.drop_list.county_of_decedent,'Grayson', 'Grayson');addOption(document.drop_list.county_of_decedent,'Greene', 'Greene');addOption(document.drop_list.county_of_decedent,'Greensville', 'Greensville');addOption(document.drop_list.county_of_decedent,'Halifax', 'Halifax');addOption(document.drop_list.county_of_decedent,'Hampton City', 'Hampton City');addOption(document.drop_list.county_of_decedent,'Hanover', 'Hanover');addOption(document.drop_list.county_of_decedent,'Harrisonburg City', 'Harrisonburg City');addOption(document.drop_list.county_of_decedent,'Henrico', 'Henrico');addOption(document.drop_list.county_of_decedent,'Henry', 'Henry');addOption(document.drop_list.county_of_decedent,'Highland', 'Highland');addOption(document.drop_list.county_of_decedent,'Hopewell City', 'Hopewell City');addOption(document.drop_list.county_of_decedent,'Isle of Wight', 'Isle of Wight');addOption(document.drop_list.county_of_decedent,'James City', 'James City');addOption(document.drop_list.county_of_decedent,'King and Queen', 'King and Queen');addOption(document.drop_list.county_of_decedent,'King George', 'King George');addOption(document.drop_list.county_of_decedent,'King William', 'King William');addOption(document.drop_list.county_of_decedent,'Lancaster', 'Lancaster');addOption(document.drop_list.county_of_decedent,'Lee', 'Lee');addOption(document.drop_list.county_of_decedent,'Lexington City', 'Lexington City');addOption(document.drop_list.county_of_decedent,'Loudoun', 'Loudoun');addOption(document.drop_list.county_of_decedent,'Louisa', 'Louisa');addOption(document.drop_list.county_of_decedent,'Lunenburg', 'Lunenburg');addOption(document.drop_list.county_of_decedent,'Lynchburg City', 'Lynchburg City');addOption(document.drop_list.county_of_decedent,'Madison', 'Madison');addOption(document.drop_list.county_of_decedent,'Manassas City', 'Manassas City');addOption(document.drop_list.county_of_decedent,'Manassas Park City', 'Manassas Park City');addOption(document.drop_list.county_of_decedent,'Martinsville City', 'Martinsville City');addOption(document.drop_list.county_of_decedent,'Mathews', 'Mathews');addOption(document.drop_list.county_of_decedent,'Mecklenburg', 'Mecklenburg');addOption(document.drop_list.county_of_decedent,'Middlesex', 'Middlesex');addOption(document.drop_list.county_of_decedent,'Montgomery', 'Montgomery');addOption(document.drop_list.county_of_decedent,'Nelson', 'Nelson');addOption(document.drop_list.county_of_decedent,'New Kent', 'New Kent');addOption(document.drop_list.county_of_decedent,'Newport News City', 'Newport News City');addOption(document.drop_list.county_of_decedent,'Norfolk City', 'Norfolk City');addOption(document.drop_list.county_of_decedent,'Northampton', 'Northampton');addOption(document.drop_list.county_of_decedent,'Northumberland', 'Northumberland');addOption(document.drop_list.county_of_decedent,'Norton City', 'Norton City');addOption(document.drop_list.county_of_decedent,'Nottoway', 'Nottoway');addOption(document.drop_list.county_of_decedent,'Orange', 'Orange');addOption(document.drop_list.county_of_decedent,'Page', 'Page');addOption(document.drop_list.county_of_decedent,'Patrick', 'Patrick');addOption(document.drop_list.county_of_decedent,'Petersburg City', 'Petersburg City');addOption(document.drop_list.county_of_decedent,'Pittsylvania', 'Pittsylvania');addOption(document.drop_list.county_of_decedent,'Poquoson City', 'Poquoson City');addOption(document.drop_list.county_of_decedent,'Portsmouth City', 'Portsmouth City');addOption(document.drop_list.county_of_decedent,'Powhatan', 'Powhatan');addOption(document.drop_list.county_of_decedent,'Prince Edward', 'Prince Edward');addOption(document.drop_list.county_of_decedent,'Prince George', 'Prince George');addOption(document.drop_list.county_of_decedent,'Prince William', 'Prince William');addOption(document.drop_list.county_of_decedent,'Pulaski', 'Pulaski');addOption(document.drop_list.county_of_decedent,'Radford City', 'Radford City');addOption(document.drop_list.county_of_decedent,'Rappahannock', 'Rappahannock');addOption(document.drop_list.county_of_decedent,'Richmond', 'Richmond');addOption(document.drop_list.county_of_decedent,'Richmond City', 'Richmond City');addOption(document.drop_list.county_of_decedent,'Roanoke', 'Roanoke');addOption(document.drop_list.county_of_decedent,'Roanoke City', 'Roanoke City');addOption(document.drop_list.county_of_decedent,'Rockbridge', 'Rockbridge');addOption(document.drop_list.county_of_decedent,'Rockingham', 'Rockingham');addOption(document.drop_list.county_of_decedent,'Russell', 'Russell');addOption(document.drop_list.county_of_decedent,'Salem', 'Salem');addOption(document.drop_list.county_of_decedent,'Scott', 'Scott');addOption(document.drop_list.county_of_decedent,'Shenandoah', 'Shenandoah');addOption(document.drop_list.county_of_decedent,'Smyth', 'Smyth');addOption(document.drop_list.county_of_decedent,'Southampton', 'Southampton');addOption(document.drop_list.county_of_decedent,'Spotsylvania', 'Spotsylvania');addOption(document.drop_list.county_of_decedent,'Stafford', 'Stafford');addOption(document.drop_list.county_of_decedent,'Staunton City', 'Staunton City');addOption(document.drop_list.county_of_decedent,'Suffolk City', 'Suffolk City');addOption(document.drop_list.county_of_decedent,'Surry', 'Surry');addOption(document.drop_list.county_of_decedent,'Sussex', 'Sussex');addOption(document.drop_list.county_of_decedent,'Tazewell', 'Tazewell');addOption(document.drop_list.county_of_decedent,'Virginia Beach City', 'Virginia Beach City');addOption(document.drop_list.county_of_decedent,'Warren', 'Warren');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Waynesboro City', 'Waynesboro City');addOption(document.drop_list.county_of_decedent,'Westmoreland', 'Westmoreland');addOption(document.drop_list.county_of_decedent,'Williamsburg City', 'Williamsburg City');addOption(document.drop_list.county_of_decedent,'Winchester City', 'Winchester City');addOption(document.drop_list.county_of_decedent,'Wise', 'Wise');addOption(document.drop_list.county_of_decedent,'Wythe', 'Wythe');addOption(document.drop_list.county_of_decedent,'York', 'York');}if(document.drop_list.state_of_decedent.value == 'washington'){addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Asotin', 'Asotin');addOption(document.drop_list.county_of_decedent,'Benton', 'Benton');addOption(document.drop_list.county_of_decedent,'Chelan', 'Chelan');addOption(document.drop_list.county_of_decedent,'Clallam', 'Clallam');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Columbia', 'Columbia');addOption(document.drop_list.county_of_decedent,'Cowlitz', 'Cowlitz');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Ferry', 'Ferry');addOption(document.drop_list.county_of_decedent,'Franklin', 'Franklin');addOption(document.drop_list.county_of_decedent,'Garfield', 'Garfield');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Grays Harbor', 'Grays Harbor');addOption(document.drop_list.county_of_decedent,'Island', 'Island');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'King', 'King');addOption(document.drop_list.county_of_decedent,'Kitsap', 'Kitsap');addOption(document.drop_list.county_of_decedent,'Kittitas', 'Kittitas');addOption(document.drop_list.county_of_decedent,'Klickitat', 'Klickitat');addOption(document.drop_list.county_of_decedent,'Lewis', 'Lewis');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Mason', 'Mason');addOption(document.drop_list.county_of_decedent,'Okanogan', 'Okanogan');addOption(document.drop_list.county_of_decedent,'Pacific', 'Pacific');addOption(document.drop_list.county_of_decedent,'Pend Oreille', 'Pend Oreille');addOption(document.drop_list.county_of_decedent,'Pierce', 'Pierce');addOption(document.drop_list.county_of_decedent,'San Juan', 'San Juan');addOption(document.drop_list.county_of_decedent,'Skagit', 'Skagit');addOption(document.drop_list.county_of_decedent,'Skamania', 'Skamania');addOption(document.drop_list.county_of_decedent,'Snohomish', 'Snohomish');addOption(document.drop_list.county_of_decedent,'Spokane', 'Spokane');addOption(document.drop_list.county_of_decedent,'Stevens', 'Stevens');addOption(document.drop_list.county_of_decedent,'Thurston', 'Thurston');addOption(document.drop_list.county_of_decedent,'Wahkiakum', 'Wahkiakum');addOption(document.drop_list.county_of_decedent,'Walla Walla', 'Walla Walla');addOption(document.drop_list.county_of_decedent,'Whatcom', 'Whatcom');addOption(document.drop_list.county_of_decedent,'Whitman', 'Whitman');addOption(document.drop_list.county_of_decedent,'Yakima', 'Yakima');}if(document.drop_list.state_of_decedent.value == 'westvirginia'){addOption(document.drop_list.county_of_decedent,'Barbour', 'Barbour');addOption(document.drop_list.county_of_decedent,'Berkeley', 'Berkeley');addOption(document.drop_list.county_of_decedent,'Boone', 'Boone');addOption(document.drop_list.county_of_decedent,'Braxton', 'Braxton');addOption(document.drop_list.county_of_decedent,'Brooke', 'Brooke');addOption(document.drop_list.county_of_decedent,'Cabell', 'Cabell');addOption(document.drop_list.county_of_decedent,'Calhoun', 'Calhoun');addOption(document.drop_list.county_of_decedent,'Clay', 'Clay');addOption(document.drop_list.county_of_decedent,'Doddridge', 'Doddridge');addOption(document.drop_list.county_of_decedent,'Fayette', 'Fayette');addOption(document.drop_list.county_of_decedent,'Gilmer', 'Gilmer');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Greenbrier', 'Greenbrier');addOption(document.drop_list.county_of_decedent,'Hampshire', 'Hampshire');addOption(document.drop_list.county_of_decedent,'Hancock', 'Hancock');addOption(document.drop_list.county_of_decedent,'Hardy', 'Hardy');addOption(document.drop_list.county_of_decedent,'Harrison', 'Harrison');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Kanawha', 'Kanawha');addOption(document.drop_list.county_of_decedent,'Lewis', 'Lewis');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Logan', 'Logan');addOption(document.drop_list.county_of_decedent,'Marion', 'Marion');addOption(document.drop_list.county_of_decedent,'Marshall', 'Marshall');addOption(document.drop_list.county_of_decedent,'Mason', 'Mason');addOption(document.drop_list.county_of_decedent,'McDowell', 'McDowell');addOption(document.drop_list.county_of_decedent,'Mercer', 'Mercer');addOption(document.drop_list.county_of_decedent,'Mineral', 'Mineral');addOption(document.drop_list.county_of_decedent,'Mingo', 'Mingo');addOption(document.drop_list.county_of_decedent,'Monongalia', 'Monongalia');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Morgan', 'Morgan');addOption(document.drop_list.county_of_decedent,'Nicholas', 'Nicholas');addOption(document.drop_list.county_of_decedent,'Ohio', 'Ohio');addOption(document.drop_list.county_of_decedent,'Pendleton', 'Pendleton');addOption(document.drop_list.county_of_decedent,'Pleasants', 'Pleasants');addOption(document.drop_list.county_of_decedent,'Pocahontas', 'Pocahontas');addOption(document.drop_list.county_of_decedent,'Preston', 'Preston');addOption(document.drop_list.county_of_decedent,'Putnam', 'Putnam');addOption(document.drop_list.county_of_decedent,'Raleigh', 'Raleigh');addOption(document.drop_list.county_of_decedent,'Randolph', 'Randolph');addOption(document.drop_list.county_of_decedent,'Ritchie', 'Ritchie');addOption(document.drop_list.county_of_decedent,'Roane', 'Roane');addOption(document.drop_list.county_of_decedent,'Summers', 'Summers');addOption(document.drop_list.county_of_decedent,'Taylor', 'Taylor');addOption(document.drop_list.county_of_decedent,'Tucker', 'Tucker');addOption(document.drop_list.county_of_decedent,'Tyler', 'Tyler');addOption(document.drop_list.county_of_decedent,'Upshur', 'Upshur');addOption(document.drop_list.county_of_decedent,'Wayne', 'Wayne');addOption(document.drop_list.county_of_decedent,'Webster', 'Webster');addOption(document.drop_list.county_of_decedent,'Wetzel', 'Wetzel');addOption(document.drop_list.county_of_decedent,'Wirt', 'Wirt');addOption(document.drop_list.county_of_decedent,'Wood', 'Wood');addOption(document.drop_list.county_of_decedent,'Wyoming', 'Wyoming');}if(document.drop_list.state_of_decedent.value == 'wisconsin'){addOption(document.drop_list.county_of_decedent,'Adams', 'Adams');addOption(document.drop_list.county_of_decedent,'Ashland', 'Ashland');addOption(document.drop_list.county_of_decedent,'Barron', 'Barron');addOption(document.drop_list.county_of_decedent,'Bayfield', 'Bayfield');addOption(document.drop_list.county_of_decedent,'Brown', 'Brown');addOption(document.drop_list.county_of_decedent,'Buffalo', 'Buffalo');addOption(document.drop_list.county_of_decedent,'Burnett', 'Burnett');addOption(document.drop_list.county_of_decedent,'Calumet', 'Calumet');addOption(document.drop_list.county_of_decedent,'Chippewa', 'Chippewa');addOption(document.drop_list.county_of_decedent,'Clark', 'Clark');addOption(document.drop_list.county_of_decedent,'Columbia', 'Columbia');addOption(document.drop_list.county_of_decedent,'Crawford', 'Crawford');addOption(document.drop_list.county_of_decedent,'Dane', 'Dane');addOption(document.drop_list.county_of_decedent,'Dodge', 'Dodge');addOption(document.drop_list.county_of_decedent,'Door', 'Door');addOption(document.drop_list.county_of_decedent,'Douglas', 'Douglas');addOption(document.drop_list.county_of_decedent,'Dunn', 'Dunn');addOption(document.drop_list.county_of_decedent,'Eau Claire', 'Eau Claire');addOption(document.drop_list.county_of_decedent,'Florence', 'Florence');addOption(document.drop_list.county_of_decedent,'Fond du Lac', 'Fond du Lac');addOption(document.drop_list.county_of_decedent,'Forest', 'Forest');addOption(document.drop_list.county_of_decedent,'Grant', 'Grant');addOption(document.drop_list.county_of_decedent,'Green', 'Green');addOption(document.drop_list.county_of_decedent,'Green Lake', 'Green Lake');addOption(document.drop_list.county_of_decedent,'Iowa', 'Iowa');addOption(document.drop_list.county_of_decedent,'Iron', 'Iron');addOption(document.drop_list.county_of_decedent,'Jackson', 'Jackson');addOption(document.drop_list.county_of_decedent,'Jefferson', 'Jefferson');addOption(document.drop_list.county_of_decedent,'Juneau', 'Juneau');addOption(document.drop_list.county_of_decedent,'Kenosha', 'Kenosha');addOption(document.drop_list.county_of_decedent,'Kewaunee', 'Kewaunee');addOption(document.drop_list.county_of_decedent,'La Crosse', 'La Crosse');addOption(document.drop_list.county_of_decedent,'Lafayette', 'Lafayette');addOption(document.drop_list.county_of_decedent,'Langlade', 'Langlade');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Manitowoc', 'Manitowoc');addOption(document.drop_list.county_of_decedent,'Marathon', 'Marathon');addOption(document.drop_list.county_of_decedent,'Marinette', 'Marinette');addOption(document.drop_list.county_of_decedent,'Marquette', 'Marquette');addOption(document.drop_list.county_of_decedent,'Menominee', 'Menominee');addOption(document.drop_list.county_of_decedent,'Milwaukee', 'Milwaukee');addOption(document.drop_list.county_of_decedent,'Monroe', 'Monroe');addOption(document.drop_list.county_of_decedent,'Oconto', 'Oconto');addOption(document.drop_list.county_of_decedent,'Oneida', 'Oneida');addOption(document.drop_list.county_of_decedent,'Outagamie', 'Outagamie');addOption(document.drop_list.county_of_decedent,'Ozaukee', 'Ozaukee');addOption(document.drop_list.county_of_decedent,'Pepin', 'Pepin');addOption(document.drop_list.county_of_decedent,'Pierce', 'Pierce');addOption(document.drop_list.county_of_decedent,'Polk', 'Polk');addOption(document.drop_list.county_of_decedent,'Portage', 'Portage');addOption(document.drop_list.county_of_decedent,'Price', 'Price');addOption(document.drop_list.county_of_decedent,'Racine', 'Racine');addOption(document.drop_list.county_of_decedent,'Richland', 'Richland');addOption(document.drop_list.county_of_decedent,'Rock', 'Rock');addOption(document.drop_list.county_of_decedent,'Rusk', 'Rusk');addOption(document.drop_list.county_of_decedent,'Saint Croix', 'Saint Croix');addOption(document.drop_list.county_of_decedent,'Sauk', 'Sauk');addOption(document.drop_list.county_of_decedent,'Sawyer', 'Sawyer');addOption(document.drop_list.county_of_decedent,'Shawano', 'Shawano');addOption(document.drop_list.county_of_decedent,'Sheboygan', 'Sheboygan');addOption(document.drop_list.county_of_decedent,'Taylor', 'Taylor');addOption(document.drop_list.county_of_decedent,'Trempealeau', 'Trempealeau');addOption(document.drop_list.county_of_decedent,'Vernon', 'Vernon');addOption(document.drop_list.county_of_decedent,'Vilas', 'Vilas');addOption(document.drop_list.county_of_decedent,'Walworth', 'Walworth');addOption(document.drop_list.county_of_decedent,'Washburn', 'Washburn');addOption(document.drop_list.county_of_decedent,'Washington', 'Washington');addOption(document.drop_list.county_of_decedent,'Waukesha', 'Waukesha');addOption(document.drop_list.county_of_decedent,'Waupaca', 'Waupaca');addOption(document.drop_list.county_of_decedent,'Waushara', 'Waushara');addOption(document.drop_list.county_of_decedent,'Winnebago', 'Winnebago');addOption(document.drop_list.county_of_decedent,'Wood', 'Wood');}if(document.drop_list.state_of_decedent.value == 'wyoming'){addOption(document.drop_list.county_of_decedent,'Albany', 'Albany');addOption(document.drop_list.county_of_decedent,'Big Horn', 'Big Horn');addOption(document.drop_list.county_of_decedent,'Campbell', 'Campbell');addOption(document.drop_list.county_of_decedent,'Carbon', 'Carbon');addOption(document.drop_list.county_of_decedent,'Converse', 'Converse');addOption(document.drop_list.county_of_decedent,'Crook', 'Crook');addOption(document.drop_list.county_of_decedent,'Fremont', 'Fremont');addOption(document.drop_list.county_of_decedent,'Goshen', 'Goshen');addOption(document.drop_list.county_of_decedent,'Hot Springs', 'Hot Springs');addOption(document.drop_list.county_of_decedent,'Johnson', 'Johnson');addOption(document.drop_list.county_of_decedent,'Laramie', 'Laramie');addOption(document.drop_list.county_of_decedent,'Lincoln', 'Lincoln');addOption(document.drop_list.county_of_decedent,'Natrona', 'Natrona');addOption(document.drop_list.county_of_decedent,'Niobrara', 'Niobrara');addOption(document.drop_list.county_of_decedent,'Park', 'Park');addOption(document.drop_list.county_of_decedent,'Platte', 'Platte');addOption(document.drop_list.county_of_decedent,'Sheridan', 'Sheridan');addOption(document.drop_list.county_of_decedent,'Sublette', 'Sublette');addOption(document.drop_list.county_of_decedent,'Sweetwater', 'Sweetwater');addOption(document.drop_list.county_of_decedent,'Teton', 'Teton');addOption(document.drop_list.county_of_decedent,'Uinta', 'Uinta');addOption(document.drop_list.county_of_decedent,'Washakie', 'Washakie');addOption(document.drop_list.county_of_decedent,'Weston', 'Weston');}if(document.drop_list.state_of_decedent.value == 'california'){addOption(document.drop_list.county_of_decedent,'Alameda', 'Alameda');addOption(document.drop_list.county_of_decedent,'Alpine', 'Alpine');addOption(document.drop_list.county_of_decedent,'Amador', 'Amador');addOption(document.drop_list.county_of_decedent,'Butte', 'Butte');addOption(document.drop_list.county_of_decedent,'Calaveras', 'Calaveras');addOption(document.drop_list.county_of_decedent,'Colusa', 'Colusa');addOption(document.drop_list.county_of_decedent,'Contra Costa', 'Contra Costa');addOption(document.drop_list.county_of_decedent,'Del Norte', 'Del Norte');addOption(document.drop_list.county_of_decedent,'El Dorado', 'El Dorado');addOption(document.drop_list.county_of_decedent,'Fresno', 'Fresno');addOption(document.drop_list.county_of_decedent,'Glenn', 'Glenn');addOption(document.drop_list.county_of_decedent,'Humboldt', 'Humboldt');addOption(document.drop_list.county_of_decedent,'Imperial', 'Imperial');addOption(document.drop_list.county_of_decedent,'Inyo', 'Inyo');addOption(document.drop_list.county_of_decedent,'Kern', 'Kern');addOption(document.drop_list.county_of_decedent,'Kings', 'Kings');addOption(document.drop_list.county_of_decedent,'Lake', 'Lake');addOption(document.drop_list.county_of_decedent,'Lassen', 'Lassen');addOption(document.drop_list.county_of_decedent,'Los Angeles', 'Los Angeles');addOption(document.drop_list.county_of_decedent,'Madera', 'Madera');addOption(document.drop_list.county_of_decedent,'Marin', 'Marin');addOption(document.drop_list.county_of_decedent,'Mariposa', 'Mariposa');addOption(document.drop_list.county_of_decedent,'Mendocino', 'Mendocino');addOption(document.drop_list.county_of_decedent,'Merced', 'Merced');addOption(document.drop_list.county_of_decedent,'Modoc', 'Modoc');addOption(document.drop_list.county_of_decedent,'Mono', 'Mono');addOption(document.drop_list.county_of_decedent,'Monterey', 'Monterey');addOption(document.drop_list.county_of_decedent,'Napa', 'Napa');addOption(document.drop_list.county_of_decedent,'Nevada', 'Nevada');addOption(document.drop_list.county_of_decedent,'Orange', 'Orange');addOption(document.drop_list.county_of_decedent,'Placer', 'Placer');addOption(document.drop_list.county_of_decedent,'Plumas', 'Plumas');addOption(document.drop_list.county_of_decedent,'Riverside', 'Riverside');addOption(document.drop_list.county_of_decedent,'Sacramento', 'Sacramento');addOption(document.drop_list.county_of_decedent,'San Benito', 'San Benito');addOption(document.drop_list.county_of_decedent,'San Bernardino', 'San Bernardino');addOption(document.drop_list.county_of_decedent,'San Diego', 'San Diego');addOption(document.drop_list.county_of_decedent,'San Francisco', 'San Francisco');addOption(document.drop_list.county_of_decedent,'San Joaquin', 'San Joaquin');addOption(document.drop_list.county_of_decedent,'San Luis Obispo', 'San Luis Obispo');addOption(document.drop_list.county_of_decedent,'San Mateo', 'San Mateo');addOption(document.drop_list.county_of_decedent,'Santa Barbara', 'Santa Barbara');addOption(document.drop_list.county_of_decedent,'Santa Clara', 'Santa Clara');addOption(document.drop_list.county_of_decedent,'Santa Cruz', 'Santa Cruz');addOption(document.drop_list.county_of_decedent,'Shasta', 'Shasta');addOption(document.drop_list.county_of_decedent,'Sierra', 'Sierra');addOption(document.drop_list.county_of_decedent,'Siskiyou', 'Siskiyou');addOption(document.drop_list.county_of_decedent,'Solano', 'Solano');addOption(document.drop_list.county_of_decedent,'Sonoma', 'Sonoma');addOption(document.drop_list.county_of_decedent,'Stanislaus', 'Stanislaus');addOption(document.drop_list.county_of_decedent,'Sutter', 'Sutter');addOption(document.drop_list.county_of_decedent,'Tehama', 'Tehama');addOption(document.drop_list.county_of_decedent,'Trinity', 'Trinity');addOption(document.drop_list.county_of_decedent,'Tulare', 'Tulare');addOption(document.drop_list.county_of_decedent,'Tuolumne', 'Tuolumne');addOption(document.drop_list.county_of_decedent,'Ventura', 'Ventura');addOption(document.drop_list.county_of_decedent,'Yolo', 'Yolo');addOption(document.drop_list.county_of_decedent,'Yuba', 'Yuba');}



}
////////////////// 

function removeAllOptions(selectbox)
{
	var i;
	for(i=selectbox.options.length-1;i>=0;i--)
	{
		//selectbox.options.remove(i);
		selectbox.remove(i);
	}
}


function addOption(selectbox, value, text )
{
	var optn = document.createElement("OPTION");
	optn.text = text;
	optn.value = value;

	selectbox.options.add(optn);
}
