function fillCategory(){ // this function is used to fill the category list on load 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 == 'newyo