function popState(theCountry, theState) {
        while (document.career.STATE.options.length) {
                document.career.STATE.options[0] = null;
        }
        switch (theCountry) {
   case "ARG":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Buenos Aires", "BA");
     document.career.STATE.options[2] = new Option("Capital Federal", "CF");
     document.career.STATE.options[3] = new Option("Catamarca", "CT");
     document.career.STATE.options[4] = new Option("Chaco", "CH");
     document.career.STATE.options[5] = new Option("Chubut", "CB");
     document.career.STATE.options[6] = new Option("Cordoba", "CO");
     document.career.STATE.options[7] = new Option("Corrientes", "CR");
     document.career.STATE.options[8] = new Option("Entre Rios", "ER");
     document.career.STATE.options[9] = new Option("Formosa", "FO");
     document.career.STATE.options[10] = new Option("Jujuy", "JU");
     document.career.STATE.options[11] = new Option("La Pampa", "LP");
     document.career.STATE.options[12] = new Option("La Rioja", "LR");
     document.career.STATE.options[13] = new Option("Mendoza", "MZ");
     document.career.STATE.options[14] = new Option("Misiones", "MI");
     document.career.STATE.options[15] = new Option("Neuquen", "NQ");
     document.career.STATE.options[16] = new Option("Rio Negro", "RN");
     document.career.STATE.options[17] = new Option("Salta", "SA");
     document.career.STATE.options[18] = new Option("San Juan", "SJ");
     document.career.STATE.options[19] = new Option("San Luis", "SL");
     document.career.STATE.options[20] = new Option("Santa Cruz", "SC");
     document.career.STATE.options[21] = new Option("Santa Fe", "SF");
     document.career.STATE.options[22] = new Option("Santiago del Estero", "SE");
     document.career.STATE.options[23] = new Option("Tierra del Fuego", "TF");
     document.career.STATE.options[24] = new Option("Tucuman", "TU");
     break;
   case "AUS":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Australia Capital Territory", "ACT");
     document.career.STATE.options[2] = new Option("New South Wales", "NSW");
     document.career.STATE.options[3] = new Option("Northern Territory", "NT");
     document.career.STATE.options[4] = new Option("Queensland", "QLD");
     document.career.STATE.options[5] = new Option("South Australia", "SA");
     document.career.STATE.options[6] = new Option("Tasmania", "TAS");
     document.career.STATE.options[7] = new Option("Victoria", "VIC");
     document.career.STATE.options[8] = new Option("Western Australia", "WA");
     break;
   case "BEL":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Antwerpen", "AN");
     document.career.STATE.options[2] = new Option("Brussels-Capital Region", "BC");
     document.career.STATE.options[3] = new Option("Henegouwen", "HE");
     document.career.STATE.options[4] = new Option("Limburg", "LI");
     document.career.STATE.options[5] = new Option("Luik", "LU");
     document.career.STATE.options[6] = new Option("Luxemburg", "LX");
     document.career.STATE.options[7] = new Option("Namen", "NA");
     document.career.STATE.options[8] = new Option("Oost Vlaanderen", "OV");
     document.career.STATE.options[9] = new Option("Vlaams Brabant", "VB");
     document.career.STATE.options[10] = new Option("Waals Brabant", "WB");
     document.career.STATE.options[11] = new Option("West Vlaanderen", "WV");
     break;
   case "BOL":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Beni", "BE");
     document.career.STATE.options[2] = new Option("Chuquisaca", "CH");
     document.career.STATE.options[3] = new Option("Cochabamba", "CO");
     document.career.STATE.options[4] = new Option("La Paz", "LP");
     document.career.STATE.options[5] = new Option("Oruro", "OR");
     document.career.STATE.options[6] = new Option("Pando", "PA");
     document.career.STATE.options[7] = new Option("Potosi", "PO");
     document.career.STATE.options[8] = new Option("Santa Cruz", "SC");
     document.career.STATE.options[9] = new Option("Tarija", "TA");
     break;
   case "BRA":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Acre", "AC");
     document.career.STATE.options[2] = new Option("Alagoas", "AL");
     document.career.STATE.options[3] = new Option("Amapa", "AP");
     document.career.STATE.options[4] = new Option("Amazonas", "AM");
     document.career.STATE.options[5] = new Option("Bahia", "BA");
     document.career.STATE.options[6] = new Option("Ceara", "CE");
     document.career.STATE.options[7] = new Option("Distrito Federal", "DF");
     document.career.STATE.options[8] = new Option("Espirito Santo", "ES");
     document.career.STATE.options[9] = new Option("Fernando de Noronha", "FN");
     document.career.STATE.options[10] = new Option("Goias", "GO");
     document.career.STATE.options[11] = new Option("Maranhao", "MA");
     document.career.STATE.options[12] = new Option("Mato Grosso", "MT");
     document.career.STATE.options[13] = new Option("Mato Grosso do Sul", "MS");
     document.career.STATE.options[14] = new Option("Minas Gerais", "MG");
     document.career.STATE.options[15] = new Option("Para", "PA");
     document.career.STATE.options[16] = new Option("Paraiba", "PB");
     document.career.STATE.options[17] = new Option("Parana", "PR");
     document.career.STATE.options[18] = new Option("Pernambuco", "PE");
     document.career.STATE.options[19] = new Option("Piaui", "PI");
     document.career.STATE.options[20] = new Option("Rio Grande do Norte", "RN");
     document.career.STATE.options[21] = new Option("Rio Grande do Sul", "RS");
     document.career.STATE.options[22] = new Option("Rio de Janeiro", "RJ");
     document.career.STATE.options[23] = new Option("Rondonia", "RO");
     document.career.STATE.options[24] = new Option("Roraima", "RR");
     document.career.STATE.options[25] = new Option("Santa Catarina", "SC");
     document.career.STATE.options[26] = new Option("Sao Paulo", "SP");
     document.career.STATE.options[27] = new Option("Sergipe", "SE");
     document.career.STATE.options[28] = new Option("Tocantins", "TO");
     break;
   case "CAN":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Alberta", "AB");
     document.career.STATE.options[2] = new Option("Beyond the limits of any Prov.", "ZZ");
     document.career.STATE.options[3] = new Option("British Columbia", "BC");
     document.career.STATE.options[4] = new Option("Manitoba", "MB");
     document.career.STATE.options[5] = new Option("New Brunswick", "NB");
     document.career.STATE.options[6] = new Option("Newfoundland (NF)", "NF");
     document.career.STATE.options[7] = new Option("Newfoundland (NL)", "NL");
     document.career.STATE.options[8] = new Option("Northwest Territories", "NT");
     document.career.STATE.options[9] = new Option("Nova Scotia", "NS");
     document.career.STATE.options[10] = new Option("Nunavut (NN)", "NN");
     document.career.STATE.options[11] = new Option("Nunavut (NU)", "NU");
     document.career.STATE.options[12] = new Option("Ontario", "ON");
     document.career.STATE.options[13] = new Option("Prince Edward Island", "PE");
     document.career.STATE.options[14] = new Option("Quebec", "QC");
     document.career.STATE.options[15] = new Option("Saskatchewan", "SK");
     document.career.STATE.options[16] = new Option("Yukon", "YT");
     break;
   case "CHE":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Aargau", "AG");
     document.career.STATE.options[2] = new Option("Appenzell A.R.", "AR");
     document.career.STATE.options[3] = new Option("Appenzell I.R.", "AI");
     document.career.STATE.options[4] = new Option("Basel-Land", "BL");
     document.career.STATE.options[5] = new Option("Basel-Stadt", "BS");
     document.career.STATE.options[6] = new Option("Bern", "BE");
     document.career.STATE.options[7] = new Option("Freiburg", "FR");
     document.career.STATE.options[8] = new Option("Genf", "GE");
     document.career.STATE.options[9] = new Option("Glarus", "GL");
     document.career.STATE.options[10] = new Option("Graubunden", "GR");
     document.career.STATE.options[11] = new Option("Jura", "JU");
     document.career.STATE.options[12] = new Option("Luzern", "LU");
     document.career.STATE.options[13] = new Option("Neuenburg", "NE");
     document.career.STATE.options[14] = new Option("Nidwalden", "NW");
     document.career.STATE.options[15] = new Option("Obwalden", "OW");
     document.career.STATE.options[16] = new Option("Schwyz", "SZ");
     document.career.STATE.options[17] = new Option("Shaffhausen", "SH");
     document.career.STATE.options[18] = new Option("Solothurn", "SO");
     document.career.STATE.options[19] = new Option("St. Gallen", "SG");
     document.career.STATE.options[20] = new Option("Tessin", "TI");
     document.career.STATE.options[21] = new Option("Thurgau", "TG");
     document.career.STATE.options[22] = new Option("Uri", "UR");
     document.career.STATE.options[23] = new Option("Waadt", "VD");
     document.career.STATE.options[24] = new Option("Wallis", "VS");
     document.career.STATE.options[25] = new Option("Zug", "ZG");
     document.career.STATE.options[26] = new Option("Zurich", "ZH");
     break;
   case "CHL":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Aisen del Gral. C.I. del Campo", "AG");
     document.career.STATE.options[2] = new Option("Antofagasta", "AN");
     document.career.STATE.options[3] = new Option("Araucania", "AR");
     document.career.STATE.options[4] = new Option("Atacama", "AT");
     document.career.STATE.options[5] = new Option("Bio-Bio", "BB");
     document.career.STATE.options[6] = new Option("Coquimbo", "CO");
     document.career.STATE.options[7] = new Option("Lib. Gral. Bernardo O'Higgins", "LO");
     document.career.STATE.options[8] = new Option("Los Lagos", "LL");
     document.career.STATE.options[9] = new Option("Magallanes y Antartica Chilena", "MA");
     document.career.STATE.options[10] = new Option("Maule", "MU");
     document.career.STATE.options[11] = new Option("Region Metropolitana", "RM");
     document.career.STATE.options[12] = new Option("Tarapaca", "TA");
     document.career.STATE.options[13] = new Option("Valparaiso", "VA");
     break;
   case "DEU":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Baden-W\u00fcrttemberg", "BW");
     document.career.STATE.options[2] = new Option("Bayern", "BY");
     document.career.STATE.options[3] = new Option("Berlin", "BE");
     document.career.STATE.options[4] = new Option("Brandenburg", "BB");
     document.career.STATE.options[5] = new Option("Bremen", "HB");
     document.career.STATE.options[6] = new Option("Hamburg", "HH");
     document.career.STATE.options[7] = new Option("Hessen", "HE");
     document.career.STATE.options[8] = new Option("Mecklenburg-Vorpommern", "MV");
     document.career.STATE.options[9] = new Option("Niedersachsen", "NI");
     document.career.STATE.options[10] = new Option("Nordrhein-Westfalen", "NW");
     document.career.STATE.options[11] = new Option("Rheinland-Pfalz", "RP");
     document.career.STATE.options[12] = new Option("Saarland", "SL");
     document.career.STATE.options[13] = new Option("Sachsen", "SC");
     document.career.STATE.options[14] = new Option("Sachsen Anhalt", "ST");
     document.career.STATE.options[15] = new Option("Sachsen-Anhalt", "SA");
     document.career.STATE.options[16] = new Option("Schleswig-Holstein", "SH");
     document.career.STATE.options[17] = new Option("Th\u00fcringen", "TH");
     break;
   case "ESP":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Alava", "01");
     document.career.STATE.options[2] = new Option("Albacete", "02");
     document.career.STATE.options[3] = new Option("Alicante", "03");
     document.career.STATE.options[4] = new Option("Almeria", "04");
     document.career.STATE.options[5] = new Option("Asturias", "33");
     document.career.STATE.options[6] = new Option("Avila", "05");
     document.career.STATE.options[7] = new Option("Badajoz", "06");
     document.career.STATE.options[8] = new Option("Baleares", "07");
     document.career.STATE.options[9] = new Option("Barcelona", "08");
     document.career.STATE.options[10] = new Option("Burgos", "09");
     document.career.STATE.options[11] = new Option("Caceres", "10");
     document.career.STATE.options[12] = new Option("Cadiz", "11");
     document.career.STATE.options[13] = new Option("Cantabria", "39");
     document.career.STATE.options[14] = new Option("Castellon", "12");
     document.career.STATE.options[15] = new Option("Ceuta", "51");
     document.career.STATE.options[16] = new Option("Ciudad Real", "13");
     document.career.STATE.options[17] = new Option("Cordoba", "14");
     document.career.STATE.options[18] = new Option("Cuenca", "16");
     document.career.STATE.options[19] = new Option("Gerona", "17");
     document.career.STATE.options[20] = new Option("Granada", "18");
     document.career.STATE.options[21] = new Option("Guadalajara", "19");
     document.career.STATE.options[22] = new Option("Guipuzcoa", "20");
     document.career.STATE.options[23] = new Option("Huelva", "21");
     document.career.STATE.options[24] = new Option("Huesca", "22");
     document.career.STATE.options[25] = new Option("Jaen", "23");
     document.career.STATE.options[26] = new Option("La Coruna", "15");
     document.career.STATE.options[27] = new Option("La Rioja", "26");
     document.career.STATE.options[28] = new Option("Las Palmas", "35");
     document.career.STATE.options[29] = new Option("Leon", "24");
     document.career.STATE.options[30] = new Option("Lerida", "25");
     document.career.STATE.options[31] = new Option("Lugo", "27");
     document.career.STATE.options[32] = new Option("Madrid", "28");
     document.career.STATE.options[33] = new Option("Malaga", "29");
     document.career.STATE.options[34] = new Option("Melilla", "52");
     document.career.STATE.options[35] = new Option("Murcia", "30");
     document.career.STATE.options[36] = new Option("Navarra", "31");
     document.career.STATE.options[37] = new Option("Orense", "32");
     document.career.STATE.options[38] = new Option("Palencia", "34");
     document.career.STATE.options[39] = new Option("Pontevedra", "36");
     document.career.STATE.options[40] = new Option("Salamanca", "37");
     document.career.STATE.options[41] = new Option("Segovia", "40");
     document.career.STATE.options[42] = new Option("Sevilla", "41");
     document.career.STATE.options[43] = new Option("Soria", "42");
     document.career.STATE.options[44] = new Option("Sta.Cruz de Tenerife", "38");
     document.career.STATE.options[45] = new Option("Tarragona", "43");
     document.career.STATE.options[46] = new Option("Teruel", "44");
     document.career.STATE.options[47] = new Option("Toledo", "45");
     document.career.STATE.options[48] = new Option("Valencia", "46");
     document.career.STATE.options[49] = new Option("Valladolid", "47");
     document.career.STATE.options[50] = new Option("Vizcaya", "48");
     document.career.STATE.options[51] = new Option("Zamora", "49");
     document.career.STATE.options[52] = new Option("Zaragoza", "50");
     break;
   case "FRA":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Ain", "01");
     document.career.STATE.options[2] = new Option("Aisne", "02");
     document.career.STATE.options[3] = new Option("Allier", "03");
     document.career.STATE.options[4] = new Option("Alpes (Hautes)", "05");
     document.career.STATE.options[5] = new Option("Alpes Maritimes", "06");
     document.career.STATE.options[6] = new Option("Alpes de Hte-Provence", "04");
     document.career.STATE.options[7] = new Option("Ardeche", "07");
     document.career.STATE.options[8] = new Option("Ardennes", "08");
     document.career.STATE.options[9] = new Option("Ari\u00e8ge", "09");
     document.career.STATE.options[10] = new Option("Aube", "10");
     document.career.STATE.options[11] = new Option("Aude", "11");
     document.career.STATE.options[12] = new Option("Aveyron", "12");
     document.career.STATE.options[13] = new Option("Bouches du Rh\u00f4ne", "13");
     document.career.STATE.options[14] = new Option("Calvados", "14");
     document.career.STATE.options[15] = new Option("Cantal", "15");
     document.career.STATE.options[16] = new Option("Charente", "16");
     document.career.STATE.options[17] = new Option("Charente-Maritime", "17");
     document.career.STATE.options[18] = new Option("Cher", "18");
     document.career.STATE.options[19] = new Option("Correze", "19");
     document.career.STATE.options[20] = new Option("Corse", "20");
     document.career.STATE.options[21] = new Option("Corse du Sud", "2A");
     document.career.STATE.options[22] = new Option("Cote-d'Or", "21");
     document.career.STATE.options[23] = new Option("Creuse", "23");
     document.career.STATE.options[24] = new Option("C\u00f4tes d'Armor", "22");
     document.career.STATE.options[25] = new Option("Dordogne", "24");
     document.career.STATE.options[26] = new Option("Doubs", "25");
     document.career.STATE.options[27] = new Option("Drome", "26");
     document.career.STATE.options[28] = new Option("Essonne", "91");
     document.career.STATE.options[29] = new Option("Etranger (Hors France)", "99");
     document.career.STATE.options[30] = new Option("Eure", "27");
     document.career.STATE.options[31] = new Option("Eure-et-Loire", "28");
     document.career.STATE.options[32] = new Option("Finist\u00e8re", "29");
     document.career.STATE.options[33] = new Option("Gard", "30");
     document.career.STATE.options[34] = new Option("Gers", "32");
     document.career.STATE.options[35] = new Option("Girond", "33");
     document.career.STATE.options[36] = new Option("Guadeloupe", "971");
     document.career.STATE.options[37] = new Option("Guyane", "973");
     document.career.STATE.options[38] = new Option("Haute Corse", "2B");
     document.career.STATE.options[39] = new Option("Haute Garonne", "31");
     document.career.STATE.options[40] = new Option("Hauts de Seine", "92");
     document.career.STATE.options[41] = new Option("H\u00e9rault", "34");
     document.career.STATE.options[42] = new Option("Ille-et-Vilaine", "35");
     document.career.STATE.options[43] = new Option("Indre", "36");
     document.career.STATE.options[44] = new Option("Indre-et-Loire", "37");
     document.career.STATE.options[45] = new Option("Isere", "38");
     document.career.STATE.options[46] = new Option("Jura", "39");
     document.career.STATE.options[47] = new Option("Landes", "40");
     document.career.STATE.options[48] = new Option("Loire", "42");
     document.career.STATE.options[49] = new Option("Loire (Haute)", "43");
     document.career.STATE.options[50] = new Option("Loire-Atlantique", "44");
     document.career.STATE.options[51] = new Option("Loire-et-Cher", "41");
     document.career.STATE.options[52] = new Option("Loiret", "45");
     document.career.STATE.options[53] = new Option("Lot", "46");
     document.career.STATE.options[54] = new Option("Lot et Garonne", "47");
     document.career.STATE.options[55] = new Option("Lozere", "48");
     document.career.STATE.options[56] = new Option("Maine-et-Loire", "49");
     document.career.STATE.options[57] = new Option("Manche", "50");
     document.career.STATE.options[58] = new Option("Marne", "51");
     document.career.STATE.options[59] = new Option("Marne (Haute)", "52");
     document.career.STATE.options[60] = new Option("Martinique", "972");
     document.career.STATE.options[61] = new Option("Mayenne", "53");
     document.career.STATE.options[62] = new Option("Mayotte", "985");
     document.career.STATE.options[63] = new Option("Meurthe et Moselle", "54");
     document.career.STATE.options[64] = new Option("Meuse", "55");
     document.career.STATE.options[65] = new Option("Morbihan", "56");
     document.career.STATE.options[66] = new Option("Moselle", "57");
     document.career.STATE.options[67] = new Option("Nievre", "58");
     document.career.STATE.options[68] = new Option("Nord", "59");
     document.career.STATE.options[69] = new Option("Nouvelle Caledonie", "988");
     document.career.STATE.options[70] = new Option("Oise", "60");
     document.career.STATE.options[71] = new Option("Orne", "61");
     document.career.STATE.options[72] = new Option("Paris (Ville de)", "75");
     document.career.STATE.options[73] = new Option("Pas de Calais", "62");
     document.career.STATE.options[74] = new Option("Polynesie Francaise", "987");
     document.career.STATE.options[75] = new Option("Puy-de-Dome", "63");
     document.career.STATE.options[76] = new Option("Pyrenees (Hautes)", "65");
     document.career.STATE.options[77] = new Option("Pyrenees-Atlantique", "64");
     document.career.STATE.options[78] = new Option("Pyrenees-Orientales", "66");
     document.career.STATE.options[79] = new Option("Reunion", "974");
     document.career.STATE.options[80] = new Option("Rhin (Bas)", "67");
     document.career.STATE.options[81] = new Option("Rhin (Haut)", "68");
     document.career.STATE.options[82] = new Option("Rh\u00f4ne", "69");
     document.career.STATE.options[83] = new Option("Saint Pierre et Miquelon", "975");
     document.career.STATE.options[84] = new Option("Saone (Haute)", "70");
     document.career.STATE.options[85] = new Option("Saone-et-Loire", "71");
     document.career.STATE.options[86] = new Option("Sarthe", "72");
     document.career.STATE.options[87] = new Option("Savoie", "73");
     document.career.STATE.options[88] = new Option("Savoie (Haute)", "74");
     document.career.STATE.options[89] = new Option("Seine St Denis", "93");
     document.career.STATE.options[90] = new Option("Seine et Marne", "77");
     document.career.STATE.options[91] = new Option("Seine-Maritime", "76");
     document.career.STATE.options[92] = new Option("Sevres (Deux)", "79");
     document.career.STATE.options[93] = new Option("Sonrme", "80");
     document.career.STATE.options[94] = new Option("Tarn", "81");
     document.career.STATE.options[95] = new Option("Tarn-et-Garonne", "82");
     document.career.STATE.options[96] = new Option("Terres Australes Francaises", "984");
     document.career.STATE.options[97] = new Option("Territoire de Belfort", "90");
     document.career.STATE.options[98] = new Option("Val d'Oise", "95");
     document.career.STATE.options[99] = new Option("Val de Marne", "94");
     document.career.STATE.options[100] = new Option("Var", "83");
     document.career.STATE.options[101] = new Option("Vaucluse", "84");
     document.career.STATE.options[102] = new Option("Vendee", "85");
     document.career.STATE.options[103] = new Option("Vienne", "86");
     document.career.STATE.options[104] = new Option("Vienne (Haute)", "87");
     document.career.STATE.options[105] = new Option("Vosges", "88");
     document.career.STATE.options[106] = new Option("Wallis et Futuna", "986");
     document.career.STATE.options[107] = new Option("Yonne", "89");
     document.career.STATE.options[108] = new Option("Yvelines", "78");
     break;
   case "GBR":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Antrim", "ANT");
     document.career.STATE.options[2] = new Option("Antrim", "ANTRIM");
     document.career.STATE.options[3] = new Option("Ards", "ARD");
     document.career.STATE.options[4] = new Option("Armagh", "ARM");
     document.career.STATE.options[5] = new Option("Avon", "AVON");
     document.career.STATE.options[6] = new Option("Ballymena", "BLA");
     document.career.STATE.options[7] = new Option("Ballymoney", "BLY");
     document.career.STATE.options[8] = new Option("Banbridge", "BNB");
     document.career.STATE.options[9] = new Option("Bedfordshire", "BEDS");
     document.career.STATE.options[10] = new Option("Belfast", "BFS");
     document.career.STATE.options[11] = new Option("Berkshire", "BERKS");
     document.career.STATE.options[12] = new Option("Borders", "BORDER");
     document.career.STATE.options[13] = new Option("Bristol", "BRIST");
     document.career.STATE.options[14] = new Option("Buckinghamshire", "BUCKS");
     document.career.STATE.options[15] = new Option("Cambridgeshire", "CAMBS");
     document.career.STATE.options[16] = new Option("Carrickfergus", "CFK");
     document.career.STATE.options[17] = new Option("Castlereagh", "CSR");
     document.career.STATE.options[18] = new Option("Central", "CENT");
     document.career.STATE.options[19] = new Option("Channel Is", "CHL IS");
     document.career.STATE.options[20] = new Option("Cheshire", "CHES");
     document.career.STATE.options[21] = new Option("Cleveland", "CLEVE");
     document.career.STATE.options[22] = new Option("Clwyd", "CLWYD");
     document.career.STATE.options[23] = new Option("Coleraine", "CLR");
     document.career.STATE.options[24] = new Option("Cookstown", "CKT");
     document.career.STATE.options[25] = new Option("Cornwall", "CNWLL");
     document.career.STATE.options[26] = new Option("Craigavon", "CGV");
     document.career.STATE.options[27] = new Option("Cumbria", "CUMB");
     document.career.STATE.options[28] = new Option("Derbyshire", "DERBY");
     document.career.STATE.options[29] = new Option("Derry", "DRY");
     document.career.STATE.options[30] = new Option("Devon", "DEVON");
     document.career.STATE.options[31] = new Option("Dorset", "DORSET");
     document.career.STATE.options[32] = new Option("Down", "DOW");
     document.career.STATE.options[33] = new Option("Dumfries & Galloway", "D&G");
     document.career.STATE.options[34] = new Option("Dungannon", "DGN");
     document.career.STATE.options[35] = new Option("Durham", "DUR");
     document.career.STATE.options[36] = new Option("Dyfed", "DYFED");
     document.career.STATE.options[37] = new Option("East Riding of Yorkshire", "E YORK");
     document.career.STATE.options[38] = new Option("East Sussex", "E.SUSX");
     document.career.STATE.options[39] = new Option("Essex", "ESSEX");
     document.career.STATE.options[40] = new Option("Fermanagh", "FER");
     document.career.STATE.options[41] = new Option("Fife", "FIFE");
     document.career.STATE.options[42] = new Option("Gloucestershire", "GLOUCS");
     document.career.STATE.options[43] = new Option("Grampian", "GRAMP");
     document.career.STATE.options[44] = new Option("Greater London", "GT LON");
     document.career.STATE.options[45] = new Option("Greater Manchester", "GT MAN");
     document.career.STATE.options[46] = new Option("Gwent", "GWENT");
     document.career.STATE.options[47] = new Option("Gwynedd", "GWYND");
     document.career.STATE.options[48] = new Option("Hampshire", "HANTS");
     document.career.STATE.options[49] = new Option("Hereford & Worcester", "H&W");
     document.career.STATE.options[50] = new Option("Herefordshire", "HFORD");
     document.career.STATE.options[51] = new Option("Hertfordshire", "HERTS");
     document.career.STATE.options[52] = new Option("Highland", "HIGHLD");
     document.career.STATE.options[53] = new Option("Humberside", "HUMB");
     document.career.STATE.options[54] = new Option("Isle of Man", "IOM");
     document.career.STATE.options[55] = new Option("Isle of Scilly", "IOS");
     document.career.STATE.options[56] = new Option("Isle of Wight", "IOW");
     document.career.STATE.options[57] = new Option("Kent", "KENT");
     document.career.STATE.options[58] = new Option("Lancashire", "LANCS");
     document.career.STATE.options[59] = new Option("Larne", "LRN");
     document.career.STATE.options[60] = new Option("Leicestershire", "LEICS");
     document.career.STATE.options[61] = new Option("Limavady", "LMV");
     document.career.STATE.options[62] = new Option("Lincolnshire", "LINCS");
     document.career.STATE.options[63] = new Option("Lisburn", "LSB");
     document.career.STATE.options[64] = new Option("Londonderry", "LDERRY");
     document.career.STATE.options[65] = new Option("Lothian", "LOTH");
     document.career.STATE.options[66] = new Option("Magherafelt", "MFT");
     document.career.STATE.options[67] = new Option("Merseyside", "MERSYD");
     document.career.STATE.options[68] = new Option("Mid Glamorgan", "M GLAM");
     document.career.STATE.options[69] = new Option("Middlesex", "MDDSX");
     document.career.STATE.options[70] = new Option("Moyle", "MYL");
     document.career.STATE.options[71] = new Option("Newry and Mourne", "NYM");
     document.career.STATE.options[72] = new Option("Newtownabbey", "NTA");
     document.career.STATE.options[73] = new Option("Norfolk", "NORFLK");
     document.career.STATE.options[74] = new Option("North Down", "NDN");
     document.career.STATE.options[75] = new Option("North Yorkshire", "N YORK");
     document.career.STATE.options[76] = new Option("Northhamptonshire", "NHANTS");
     document.career.STATE.options[77] = new Option("Northumberland", "NTHUMB");
     document.career.STATE.options[78] = new Option("Nottinghamshire", "NOTTS");
     document.career.STATE.options[79] = new Option("Omagh", "OMH");
     document.career.STATE.options[80] = new Option("Orkney Is", "ORK");
     document.career.STATE.options[81] = new Option("Oxfordshire", "OXON");
     document.career.STATE.options[82] = new Option("Powys", "POWYS");
     document.career.STATE.options[83] = new Option("Rutland", "RUTLND");
     document.career.STATE.options[84] = new Option("Shetland Is", "SHET");
     document.career.STATE.options[85] = new Option("Shropshire", "SHROPS");
     document.career.STATE.options[86] = new Option("Somerset", "SOMER");
     document.career.STATE.options[87] = new Option("South Glamorgan", "S GLAM");
     document.career.STATE.options[88] = new Option("South Yorkshire", "SYORKS");
     document.career.STATE.options[89] = new Option("Stafordshire", "STAFFS");
     document.career.STATE.options[90] = new Option("Strabane", "STB");
     document.career.STATE.options[91] = new Option("Strathclyde", "STRATH");
     document.career.STATE.options[92] = new Option("Suffolk", "SUFFK");
     document.career.STATE.options[93] = new Option("Surrey", "SURREY");
     document.career.STATE.options[94] = new Option("Tayside", "TAYS");
     document.career.STATE.options[95] = new Option("Tyne & Wear", "T&W");
     document.career.STATE.options[96] = new Option("Tyrone", "TYRONE");
     document.career.STATE.options[97] = new Option("Warwickshire", "WARWKS");
     document.career.STATE.options[98] = new Option("West Glamorgan", "W GLAM");
     document.career.STATE.options[99] = new Option("West Midlands", "WSTMID");
     document.career.STATE.options[100] = new Option("West Sussex", "W SUSX");
     document.career.STATE.options[101] = new Option("West Yorkshire", "WYORKS");
     document.career.STATE.options[102] = new Option("Western Is", "W ISLS");
     document.career.STATE.options[103] = new Option("Wiltshire", "WILTS");
     document.career.STATE.options[104] = new Option("Worcestershire", "WOR");
     break;
   case "HKG":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Hong Kong Island", "H");
     document.career.STATE.options[2] = new Option("Kowloon", "K");
     document.career.STATE.options[3] = new Option("New Territories", "N");
     document.career.STATE.options[4] = new Option("Outlying Islands", "O");
     break;
   case "IND":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Andaman and Nicobar Islands", "AN");
     document.career.STATE.options[2] = new Option("Andhra Pradesh", "AP");
     document.career.STATE.options[3] = new Option("Arunachal Pradesh", "AR");
     document.career.STATE.options[4] = new Option("Assam", "AS");
     document.career.STATE.options[5] = new Option("Bihar", "BR");
     document.career.STATE.options[6] = new Option("Chandigarh (UT)", "CH");
     document.career.STATE.options[7] = new Option("Chhattisgarh", "CT");
     document.career.STATE.options[8] = new Option("Dadra and Nagar Haveli (UT)", "DN");
     document.career.STATE.options[9] = new Option("Daman and Diu (UT)", "DD");
     document.career.STATE.options[10] = new Option("Delhi (UT)", "DL");
     document.career.STATE.options[11] = new Option("Goa", "GA");
     document.career.STATE.options[12] = new Option("Gujarat", "GJ");
     document.career.STATE.options[13] = new Option("Haryana", "HR");
     document.career.STATE.options[14] = new Option("Himachal Pradesh", "HP");
     document.career.STATE.options[15] = new Option("Jammu and Kashmir", "JK");
     document.career.STATE.options[16] = new Option("Jharkhand", "JH");
     document.career.STATE.options[17] = new Option("Karnataka", "KA");
     document.career.STATE.options[18] = new Option("Kerala", "KL");
     document.career.STATE.options[19] = new Option("Lashwadeep(UT)", "LA");
     document.career.STATE.options[20] = new Option("Madhya Pradesh", "MP");
     document.career.STATE.options[21] = new Option("Maharashtra", "MH");
     document.career.STATE.options[22] = new Option("Manipur", "MN");
     document.career.STATE.options[23] = new Option("Meghalaya", "ML");
     document.career.STATE.options[24] = new Option("Mizoram", "MZ");
     document.career.STATE.options[25] = new Option("Nagaland", "NG");
     document.career.STATE.options[26] = new Option("Orissa", "OR");
     document.career.STATE.options[27] = new Option("Pondicherry (UT)", "PY");
     document.career.STATE.options[28] = new Option("Punjab", "PB");
     document.career.STATE.options[29] = new Option("Rajasthan", "RJ");
     document.career.STATE.options[30] = new Option("Sikkim", "SK");
     document.career.STATE.options[31] = new Option("Tamil Nadu", "TN");
     document.career.STATE.options[32] = new Option("Tripura", "TR");
     document.career.STATE.options[33] = new Option("Uttar Pradesh", "UP");
     document.career.STATE.options[34] = new Option("Uttaranchal", "UT");
     document.career.STATE.options[35] = new Option("West Bengal", "WB");
     break;
   case "IRL":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Antrim", "ANTRIM");
     document.career.STATE.options[2] = new Option("Armagh", "ARMAGH");
     document.career.STATE.options[3] = new Option("Carlow", "CARLOW");
     document.career.STATE.options[4] = new Option("Cavan", "CAVAN");
     document.career.STATE.options[5] = new Option("Clare", "CLARE");
     document.career.STATE.options[6] = new Option("Cork", "CORK");
     document.career.STATE.options[7] = new Option("Derry", "DERRY");
     document.career.STATE.options[8] = new Option("Donegal", "DNEGAL");
     document.career.STATE.options[9] = new Option("Down", "DOWN");
     document.career.STATE.options[10] = new Option("Dublin", "DUBLIN");
     document.career.STATE.options[11] = new Option("Fermanagh", "FERMAN");
     document.career.STATE.options[12] = new Option("Galway", "GALWAY");
     document.career.STATE.options[13] = new Option("Kerry", "KERRY");
     document.career.STATE.options[14] = new Option("Kildare", "KLDARE");
     document.career.STATE.options[15] = new Option("Kilkenny", "KLKENY");
     document.career.STATE.options[16] = new Option("Laois", "LAOIS");
     document.career.STATE.options[17] = new Option("Leitrim", "LTRIM");
     document.career.STATE.options[18] = new Option("Limerick", "LIMRCK");
     document.career.STATE.options[19] = new Option("Longford", "LNGFRD");
     document.career.STATE.options[20] = new Option("Louth", "LOUTH");
     document.career.STATE.options[21] = new Option("Mayo", "MAYO");
     document.career.STATE.options[22] = new Option("Meath", "MEATH");
     document.career.STATE.options[23] = new Option("Monaghan", "MONGHN");
     document.career.STATE.options[24] = new Option("Offaly", "OFFALY");
     document.career.STATE.options[25] = new Option("Roscommon", "ROSCMN");
     document.career.STATE.options[26] = new Option("Sligo", "SLIGO");
     document.career.STATE.options[27] = new Option("Tipperary", "TPPRRY");
     document.career.STATE.options[28] = new Option("Tyrone", "TYRONE");
     document.career.STATE.options[29] = new Option("Waterford", "WTRFRD");
     document.career.STATE.options[30] = new Option("Westmeath", "WSTMTH");
     document.career.STATE.options[31] = new Option("Wexford", "WXFORD");
     document.career.STATE.options[32] = new Option("Wicklow", "WCKLOW");
     break;
   case "ITA":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Agrigento", "AG");
     document.career.STATE.options[2] = new Option("Alessandria", "AL");
     document.career.STATE.options[3] = new Option("Ancona", "AN");
     document.career.STATE.options[4] = new Option("Aosta", "AO");
     document.career.STATE.options[5] = new Option("Arezzo", "AR");
     document.career.STATE.options[6] = new Option("Ascoli Piceno", "AP");
     document.career.STATE.options[7] = new Option("Asti", "AT");
     document.career.STATE.options[8] = new Option("Avellino", "AV");
     document.career.STATE.options[9] = new Option("Bari", "BA");
     document.career.STATE.options[10] = new Option("Belluno", "BL");
     document.career.STATE.options[11] = new Option("Benevento", "BN");
     document.career.STATE.options[12] = new Option("Bergamo", "BG");
     document.career.STATE.options[13] = new Option("Biella", "BI");
     document.career.STATE.options[14] = new Option("Bologna", "BO");
     document.career.STATE.options[15] = new Option("Bolzano", "BZ");
     document.career.STATE.options[16] = new Option("Brescia", "BS");
     document.career.STATE.options[17] = new Option("Brindisi", "BR");
     document.career.STATE.options[18] = new Option("Cagliari", "CA");
     document.career.STATE.options[19] = new Option("Caltanissetta", "CL");
     document.career.STATE.options[20] = new Option("Campobasso", "CB");
     document.career.STATE.options[21] = new Option("Caserta", "CE");
     document.career.STATE.options[22] = new Option("Catania", "CT");
     document.career.STATE.options[23] = new Option("Catanzaro", "CZ");
     document.career.STATE.options[24] = new Option("Chieti", "CH");
     document.career.STATE.options[25] = new Option("Como", "CO");
     document.career.STATE.options[26] = new Option("Cosenza", "CS");
     document.career.STATE.options[27] = new Option("Cremona", "CR");
     document.career.STATE.options[28] = new Option("Crotone", "KR");
     document.career.STATE.options[29] = new Option("Cuneo", "CN");
     document.career.STATE.options[30] = new Option("Enna", "EN");
     document.career.STATE.options[31] = new Option("Ferrara", "FE");
     document.career.STATE.options[32] = new Option("Firenze", "FI");
     document.career.STATE.options[33] = new Option("Foggia", "FG");
     document.career.STATE.options[34] = new Option("Forli'", "FO");
     document.career.STATE.options[35] = new Option("Frosinone", "FR");
     document.career.STATE.options[36] = new Option("Genova", "GE");
     document.career.STATE.options[37] = new Option("Gorizia", "GO");
     document.career.STATE.options[38] = new Option("Grosseto", "GR");
     document.career.STATE.options[39] = new Option("Imperia", "IM");
     document.career.STATE.options[40] = new Option("Isernia", "IS");
     document.career.STATE.options[41] = new Option("L' Aquila", "AQ");
     document.career.STATE.options[42] = new Option("La Spezia", "SP");
     document.career.STATE.options[43] = new Option("Latina", "LT");
     document.career.STATE.options[44] = new Option("Lecce", "LE");
     document.career.STATE.options[45] = new Option("Lecco", "LC");
     document.career.STATE.options[46] = new Option("Livorno", "LI");
     document.career.STATE.options[47] = new Option("Lodi", "LO");
     document.career.STATE.options[48] = new Option("Lucca", "LU");
     document.career.STATE.options[49] = new Option("Macerata", "MC");
     document.career.STATE.options[50] = new Option("Mantova", "MN");
     document.career.STATE.options[51] = new Option("Massa", "MS");
     document.career.STATE.options[52] = new Option("Matera", "MT");
     document.career.STATE.options[53] = new Option("Messina", "ME");
     document.career.STATE.options[54] = new Option("Milano", "MI");
     document.career.STATE.options[55] = new Option("Modena", "MO");
     document.career.STATE.options[56] = new Option("Napoli", "NA");
     document.career.STATE.options[57] = new Option("Novara", "NO");
     document.career.STATE.options[58] = new Option("Nuoro", "NU");
     document.career.STATE.options[59] = new Option("Oristano", "OR");
     document.career.STATE.options[60] = new Option("Padova", "PD");
     document.career.STATE.options[61] = new Option("Palermo", "PA");
     document.career.STATE.options[62] = new Option("Parma", "PR");
     document.career.STATE.options[63] = new Option("Pavia", "PV");
     document.career.STATE.options[64] = new Option("Perugia", "PG");
     document.career.STATE.options[65] = new Option("Pesaro", "PS");
     document.career.STATE.options[66] = new Option("Pescara", "PE");
     document.career.STATE.options[67] = new Option("Piacenza", "PC");
     document.career.STATE.options[68] = new Option("Pisa", "PI");
     document.career.STATE.options[69] = new Option("Pistoia", "PT");
     document.career.STATE.options[70] = new Option("Pordenone", "PN");
     document.career.STATE.options[71] = new Option("Potenza", "PZ");
     document.career.STATE.options[72] = new Option("Prato", "PO");
     document.career.STATE.options[73] = new Option("Ragusa", "RG");
     document.career.STATE.options[74] = new Option("Ravenna", "RA");
     document.career.STATE.options[75] = new Option("Reggio Di Calabria", "RC");
     document.career.STATE.options[76] = new Option("Reggio Nell' Emilia", "RE");
     document.career.STATE.options[77] = new Option("Rieti", "RI");
     document.career.STATE.options[78] = new Option("Rimini", "RN");
     document.career.STATE.options[79] = new Option("Roma", "RM");
     document.career.STATE.options[80] = new Option("Rovigo", "RO");
     document.career.STATE.options[81] = new Option("Salerno", "SA");
     document.career.STATE.options[82] = new Option("Sassari", "SS");
     document.career.STATE.options[83] = new Option("Savona", "SV");
     document.career.STATE.options[84] = new Option("Siena", "SI");
     document.career.STATE.options[85] = new Option("Siracusa", "SR");
     document.career.STATE.options[86] = new Option("Sondrio", "SO");
     document.career.STATE.options[87] = new Option("Taranto", "TA");
     document.career.STATE.options[88] = new Option("Teramo", "TE");
     document.career.STATE.options[89] = new Option("Terni", "TR");
     document.career.STATE.options[90] = new Option("Torino", "TO");
     document.career.STATE.options[91] = new Option("Trapani", "TP");
     document.career.STATE.options[92] = new Option("Trento", "TN");
     document.career.STATE.options[93] = new Option("Treviso", "TV");
     document.career.STATE.options[94] = new Option("Trieste", "TS");
     document.career.STATE.options[95] = new Option("Udine", "UD");
     document.career.STATE.options[96] = new Option("Varese", "VA");
     document.career.STATE.options[97] = new Option("Venezia", "VE");
     document.career.STATE.options[98] = new Option("Verbania", "VB");
     document.career.STATE.options[99] = new Option("Vercelli", "VC");
     document.career.STATE.options[100] = new Option("Verona", "VR");
     document.career.STATE.options[101] = new Option("Vibo Valentia", "VV");
     document.career.STATE.options[102] = new Option("Vicenza", "VI");
     document.career.STATE.options[103] = new Option("Viterbo", "VT");
     break;
   case "JPN":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Aichi", "AICHI");
     document.career.STATE.options[2] = new Option("Aichi-Ken", "23");
     document.career.STATE.options[3] = new Option("Akita", "AKITA");
     document.career.STATE.options[4] = new Option("Akita-Ken", "05");
     document.career.STATE.options[5] = new Option("Aomori", "AOMORI");
     document.career.STATE.options[6] = new Option("Aomori-Ken", "02");
     document.career.STATE.options[7] = new Option("Chiba", "CHIBA");
     document.career.STATE.options[8] = new Option("Chiba-Ken", "12");
     document.career.STATE.options[9] = new Option("Ehime", "EHIME");
     document.career.STATE.options[10] = new Option("Ehime-Ken", "38");
     document.career.STATE.options[11] = new Option("Fukui", "FUKUI");
     document.career.STATE.options[12] = new Option("Fukui-Ken", "18");
     document.career.STATE.options[13] = new Option("Fukuoka", "FUKUOK");
     document.career.STATE.options[14] = new Option("Fukuoka-Ken", "40");
     document.career.STATE.options[15] = new Option("Fukushima", "FUKU");
     document.career.STATE.options[16] = new Option("Fukushima-Ken", "07");
     document.career.STATE.options[17] = new Option("Gifu", "GIFU");
     document.career.STATE.options[18] = new Option("Gifu-Ken", "21");
     document.career.STATE.options[19] = new Option("Gunma-Ken", "10");
     document.career.STATE.options[20] = new Option("Hiroshima", "HIROSH");
     document.career.STATE.options[21] = new Option("Hiroshima-Ken", "34");
     document.career.STATE.options[22] = new Option("Hokkaido", "01");
     document.career.STATE.options[23] = new Option("Hokkaido", "HOKKAI");
     document.career.STATE.options[24] = new Option("Hyogo", "HYOGO");
     document.career.STATE.options[25] = new Option("Hyogo-Ken", "28");
     document.career.STATE.options[26] = new Option("Ibaragi", "IBARAG");
     document.career.STATE.options[27] = new Option("Ibaraki-Ken", "08");
     document.career.STATE.options[28] = new Option("Ishikawa", "ISHIKA");
     document.career.STATE.options[29] = new Option("Ishikawa-Ken", "17");
     document.career.STATE.options[30] = new Option("Iwate-Ken", "03");
     document.career.STATE.options[31] = new Option("Kagawa-Ken", "37");
     document.career.STATE.options[32] = new Option("Kagoshima", "KAGOSH");
     document.career.STATE.options[33] = new Option("Kagoshima-Ken", "46");
     document.career.STATE.options[34] = new Option("Kanagawa", "KANAGA");
     document.career.STATE.options[35] = new Option("Kanagawa-Ken", "14");
     document.career.STATE.options[36] = new Option("Kochi-Ken", "39");
     document.career.STATE.options[37] = new Option("Kumamoto", "KUMAMO");
     document.career.STATE.options[38] = new Option("Kumamoto-Ken", "43");
     document.career.STATE.options[39] = new Option("Kyoto", "KYOTO");
     document.career.STATE.options[40] = new Option("Kyoto-Fu", "26");
     document.career.STATE.options[41] = new Option("Mie", "MIE");
     document.career.STATE.options[42] = new Option("Mie-Ken", "24");
     document.career.STATE.options[43] = new Option("Miyagi-Ken", "04");
     document.career.STATE.options[44] = new Option("Miyazaki-Ken", "45");
     document.career.STATE.options[45] = new Option("Nagano", "NAGANO");
     document.career.STATE.options[46] = new Option("Nagano-Ken", "20");
     document.career.STATE.options[47] = new Option("Nagasaki-Ken", "42");
     document.career.STATE.options[48] = new Option("Nara-Ken", "29");
     document.career.STATE.options[49] = new Option("Niigata", "NIIGAT");
     document.career.STATE.options[50] = new Option("Niigata-Ken", "15");
     document.career.STATE.options[51] = new Option("Oita-Ken", "44");
     document.career.STATE.options[52] = new Option("Okayama", "OKAYAM");
     document.career.STATE.options[53] = new Option("Okayama-Ken", "33");
     document.career.STATE.options[54] = new Option("Okinawa-Ken", "47");
     document.career.STATE.options[55] = new Option("Osaka", "OSAKA");
     document.career.STATE.options[56] = new Option("Osaka-Fu", "27");
     document.career.STATE.options[57] = new Option("Saga-Ken", "41");
     document.career.STATE.options[58] = new Option("Saitama", "SAITAM");
     document.career.STATE.options[59] = new Option("Saitama-Ken", "11");
     document.career.STATE.options[60] = new Option("Shiga-Ken", "25");
     document.career.STATE.options[61] = new Option("Shimane-Ken", "32");
     document.career.STATE.options[62] = new Option("Shizuoka", "SHIZUO");
     document.career.STATE.options[63] = new Option("Shizuoka-Ken", "22");
     document.career.STATE.options[64] = new Option("Tochigi-Ken", "09");
     document.career.STATE.options[65] = new Option("Tokushima-Ken", "36");
     document.career.STATE.options[66] = new Option("Tokyo", "TOKYO");
     document.career.STATE.options[67] = new Option("Tokyo-To", "13");
     document.career.STATE.options[68] = new Option("Tottori-Ken", "31");
     document.career.STATE.options[69] = new Option("Toyama-Ken", "16");
     document.career.STATE.options[70] = new Option("Wakayama-Ken", "30");
     document.career.STATE.options[71] = new Option("Yamagata-Ken", "06");
     document.career.STATE.options[72] = new Option("Yamaguchi-Ken", "35");
     document.career.STATE.options[73] = new Option("Yamanashi-Ken", "19");
     break;
   case "MEX":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Aguascalientes", "AGS");
     document.career.STATE.options[2] = new Option("Baja California Norte", "BCN");
     document.career.STATE.options[3] = new Option("Baja California Sur", "BCS");
     document.career.STATE.options[4] = new Option("Campeche", "CAMP");
     document.career.STATE.options[5] = new Option("Chiapas", "CHPS");
     document.career.STATE.options[6] = new Option("Chihuahua", "CHIH");
     document.career.STATE.options[7] = new Option("Coahuila", "COAH");
     document.career.STATE.options[8] = new Option("Colima", "COLI");
     document.career.STATE.options[9] = new Option("Distrito Federal", "DF");
     document.career.STATE.options[10] = new Option("Durango", "DGO");
     document.career.STATE.options[11] = new Option("Estado de Mexico", "EMEX");
     document.career.STATE.options[12] = new Option("Guanajuato", "GTO");
     document.career.STATE.options[13] = new Option("Guerrero", "GRO");
     document.career.STATE.options[14] = new Option("Hidalgo", "HGO");
     document.career.STATE.options[15] = new Option("Jalisco", "JAL");
     document.career.STATE.options[16] = new Option("Michoacan", "MICH");
     document.career.STATE.options[17] = new Option("Morelos", "MOR");
     document.career.STATE.options[18] = new Option("Nayarit", "NAY");
     document.career.STATE.options[19] = new Option("Nuevo Leon", "NL");
     document.career.STATE.options[20] = new Option("Oaxaca", "OAX");
     document.career.STATE.options[21] = new Option("Puebla", "PUE");
     document.career.STATE.options[22] = new Option("Queretaro", "QRO");
     document.career.STATE.options[23] = new Option("Quintana Roo", "QROO");
     document.career.STATE.options[24] = new Option("San Luis Potos", "SLP");
     document.career.STATE.options[25] = new Option("Sinaloa", "SIN");
     document.career.STATE.options[26] = new Option("Sonora", "SON");
     document.career.STATE.options[27] = new Option("Tabasco", "TAB");
     document.career.STATE.options[28] = new Option("Tamaulipas", "TAMP");
     document.career.STATE.options[29] = new Option("Tlaxcala", "TLAX");
     document.career.STATE.options[30] = new Option("Veracruz", "VER");
     document.career.STATE.options[31] = new Option("Yucatan", "YUC");
     document.career.STATE.options[32] = new Option("Zacatecas", "ZAC");
     break;
   case "MYS":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Johor", "JH");
     document.career.STATE.options[2] = new Option("Kedah", "KD");
     document.career.STATE.options[3] = new Option("Kelantan", "KT");
     document.career.STATE.options[4] = new Option("Labuan", "LB");
     document.career.STATE.options[5] = new Option("Melaka", "ML");
     document.career.STATE.options[6] = new Option("Negeri Sembilan", "NS");
     document.career.STATE.options[7] = new Option("Pahang", "PH");
     document.career.STATE.options[8] = new Option("Perak", "PR");
     document.career.STATE.options[9] = new Option("Perlis", "PL");
     document.career.STATE.options[10] = new Option("Pulau Pinang", "PG");
     document.career.STATE.options[11] = new Option("Sabah", "SB");
     document.career.STATE.options[12] = new Option("Sarawak", "SR");
     document.career.STATE.options[13] = new Option("Selangor", "SL");
     document.career.STATE.options[14] = new Option("Trengganu", "TR");
     document.career.STATE.options[15] = new Option("Wilayah Persekutuan", "WP");
     break;
   case "NLD":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("'s-Graveland", "0390");
     document.career.STATE.options[2] = new Option("'s-Gravendeel", "0517");
     document.career.STATE.options[3] = new Option("'s-Gravenhage", "0518");
     document.career.STATE.options[4] = new Option("'s-Gravenmoer", "0787");
     document.career.STATE.options[5] = new Option("'s-Gravenzande", "0519");
     document.career.STATE.options[6] = new Option("'s-Hertogenbosch", "0796");
     document.career.STATE.options[7] = new Option("Aalburg", "0738");
     document.career.STATE.options[8] = new Option("Aalsmeer", "0358");
     document.career.STATE.options[9] = new Option("Aalten", "0197");
     document.career.STATE.options[10] = new Option("Aardenburg", "0648");
     document.career.STATE.options[11] = new Option("Aarle-Rixtel", "0739");
     document.career.STATE.options[12] = new Option("Abcoude", "0305");
     document.career.STATE.options[13] = new Option("Achtkarspelen", "0059");
     document.career.STATE.options[14] = new Option("Akersloot", "0360");
     document.career.STATE.options[15] = new Option("Alblasserdam", "0482");
     document.career.STATE.options[16] = new Option("Albrandswaard", "0613");
     document.career.STATE.options[17] = new Option("Alkemade", "0483");
     document.career.STATE.options[18] = new Option("Alkmaar", "0361");
     document.career.STATE.options[19] = new Option("Almelo", "0141");
     document.career.STATE.options[20] = new Option("Almere", "0034");
     document.career.STATE.options[21] = new Option("Alphen Aan Den Rijn", "0484");
     document.career.STATE.options[22] = new Option("Alphen En Riel", "0741");
     document.career.STATE.options[23] = new Option("Ambt Delden", "0142");
     document.career.STATE.options[24] = new Option("Ambt Montfort", "1679");
     document.career.STATE.options[25] = new Option("Ameland", "0060");
     document.career.STATE.options[26] = new Option("Amerongen", "0306");
     document.career.STATE.options[27] = new Option("Amersfoort", "0307");
     document.career.STATE.options[28] = new Option("Ammerzoden", "0198");
     document.career.STATE.options[29] = new Option("Amstelveen", "0362");
     document.career.STATE.options[30] = new Option("Amsterdam", "0363");
     document.career.STATE.options[31] = new Option("Andijk", "0364");
     document.career.STATE.options[32] = new Option("Angerlo", "0199");
     document.career.STATE.options[33] = new Option("Anloo", "0105");
     document.career.STATE.options[34] = new Option("Anna Paulowna", "0366");
     document.career.STATE.options[35] = new Option("Apeldoorn", "0200");
     document.career.STATE.options[36] = new Option("Appingedam", "0003");
     document.career.STATE.options[37] = new Option("Arcen En Velden", "0885");
     document.career.STATE.options[38] = new Option("Arnemuiden", "0649");
     document.career.STATE.options[39] = new Option("Arnhem", "0202");
     document.career.STATE.options[40] = new Option("Assen", "0106");
     document.career.STATE.options[41] = new Option("Asten", "0743");
     document.career.STATE.options[42] = new Option("Avereest", "0143");
     document.career.STATE.options[43] = new Option("Axel", "0650");
     document.career.STATE.options[44] = new Option("Baarle-Nassau", "0744");
     document.career.STATE.options[45] = new Option("Baarn", "0308");
     document.career.STATE.options[46] = new Option("Bakel En Milheeze", "0745");
     document.career.STATE.options[47] = new Option("Barendrecht", "0489");
     document.career.STATE.options[48] = new Option("Barneveld", "0203");
     document.career.STATE.options[49] = new Option("Bathmen", "0144");
     document.career.STATE.options[50] = new Option("Bedum", "0005");
     document.career.STATE.options[51] = new Option("Beek (L)", "0888");
     document.career.STATE.options[52] = new Option("Beek En Donk", "0746");
     document.career.STATE.options[53] = new Option("Beemster", "0370");
     document.career.STATE.options[54] = new Option("Beernem", "8730");
     document.career.STATE.options[55] = new Option("Beesel", "0889");
     document.career.STATE.options[56] = new Option("Beilen", "0107");
     document.career.STATE.options[57] = new Option("Belfeld", "0890");
     document.career.STATE.options[58] = new Option("Bellingwedde", "0007");
     document.career.STATE.options[59] = new Option("Bemmel", "0206");
     document.career.STATE.options[60] = new Option("Bennebroek", "0372");
     document.career.STATE.options[61] = new Option("Bergambacht", "0491");
     document.career.STATE.options[62] = new Option("Bergen  Nh", "0373");
     document.career.STATE.options[63] = new Option("Bergen (L)", "0893");
     document.career.STATE.options[64] = new Option("Bergen Op Zoom", "0748");
     document.career.STATE.options[65] = new Option("Bergeyk", "0749");
     document.career.STATE.options[66] = new Option("Bergh", "0207");
     document.career.STATE.options[67] = new Option("Bergschenhoek", "0492");
     document.career.STATE.options[68] = new Option("Berkel En Rodenrijs", "0493");
     document.career.STATE.options[69] = new Option("Berkel-Enschot", "0751");
     document.career.STATE.options[70] = new Option("Berlicum", "0752");
     document.career.STATE.options[71] = new Option("Bernisse", "0568");
     document.career.STATE.options[72] = new Option("Best", "0753");
     document.career.STATE.options[73] = new Option("Beuningen", "0209");
     document.career.STATE.options[74] = new Option("Beverwijk", "0375");
     document.career.STATE.options[75] = new Option("Binnenmaas", "0585");
     document.career.STATE.options[76] = new Option("Bladel En Netersel", "0754");
     document.career.STATE.options[77] = new Option("Blaricum", "0376");
     document.career.STATE.options[78] = new Option("Bleiswijk", "0495");
     document.career.STATE.options[79] = new Option("Bloemendaal", "0377");
     document.career.STATE.options[80] = new Option("Boarnsterhim", "0055");
     document.career.STATE.options[81] = new Option("Bodegraven", "0497");
     document.career.STATE.options[82] = new Option("Boekel", "0755");
     document.career.STATE.options[83] = new Option("Bolsward", "0064");
     document.career.STATE.options[84] = new Option("Borculo", "0211");
     document.career.STATE.options[85] = new Option("Borger", "0108");
     document.career.STATE.options[86] = new Option("Born", "0897");
     document.career.STATE.options[87] = new Option("Borne", "0147");
     document.career.STATE.options[88] = new Option("Borsele", "0654");
     document.career.STATE.options[89] = new Option("Boskoop", "0499");
     document.career.STATE.options[90] = new Option("Boxmeer", "0756");
     document.career.STATE.options[91] = new Option("Boxtel", "0757");
     document.career.STATE.options[92] = new Option("Brakel", "0212");
     document.career.STATE.options[93] = new Option("Breda", "0758");
     document.career.STATE.options[94] = new Option("Brederwiede", "0194");
     document.career.STATE.options[95] = new Option("Breukelen", "0311");
     document.career.STATE.options[96] = new Option("Brielle", "0501");
     document.career.STATE.options[97] = new Option("Broekhuizen", "0898");
     document.career.STATE.options[98] = new Option("Brouwershaven", "0656");
     document.career.STATE.options[99] = new Option("Bruinisse", "0657");
     document.career.STATE.options[100] = new Option("Brummen", "0213");
     document.career.STATE.options[101] = new Option("Brunssum", "0899");
     document.career.STATE.options[102] = new Option("Budel", "0759");
     document.career.STATE.options[103] = new Option("Bunnik", "0312");
     document.career.STATE.options[104] = new Option("Bunschoten", "0313");
     document.career.STATE.options[105] = new Option("Buren", "0214");
     document.career.STATE.options[106] = new Option("Bussum", "0381");
     document.career.STATE.options[107] = new Option("Capelle Aan Den Ijssel", "0502");
     document.career.STATE.options[108] = new Option("Castricum", "0383");
     document.career.STATE.options[109] = new Option("Chaam", "0760");
     document.career.STATE.options[110] = new Option("Coevorden", "0109");
     document.career.STATE.options[111] = new Option("Cothen", "0314");
     document.career.STATE.options[112] = new Option("Cromstrijen", "0611");
     document.career.STATE.options[113] = new Option("Cuijk", "1684");
     document.career.STATE.options[114] = new Option("Culemborg", "0216");
     document.career.STATE.options[115] = new Option("Dalen", "0110");
     document.career.STATE.options[116] = new Option("Dalfsen", "0148");
     document.career.STATE.options[117] = new Option("Dantumadeel", "0065");
     document.career.STATE.options[118] = new Option("De Bilt", "0310");
     document.career.STATE.options[119] = new Option("De Lier", "0552");
     document.career.STATE.options[120] = new Option("De Marne", "1663");
     document.career.STATE.options[121] = new Option("De Ronde Venen", "0736");
     document.career.STATE.options[122] = new Option("De Wijk", "0135");
     document.career.STATE.options[123] = new Option("Delft", "0503");
     document.career.STATE.options[124] = new Option("Delfzijl", "0010");
     document.career.STATE.options[125] = new Option("Den Dungen", "0768");
     document.career.STATE.options[126] = new Option("Den Ham", "0159");
     document.career.STATE.options[127] = new Option("Den Helder", "0400");
     document.career.STATE.options[128] = new Option("Denekamp", "0149");
     document.career.STATE.options[129] = new Option("Deurne", "0762");
     document.career.STATE.options[130] = new Option("Deventer", "0150");
     document.career.STATE.options[131] = new Option("Didam", "0218");
     document.career.STATE.options[132] = new Option("Diemen", "0384");
     document.career.STATE.options[133] = new Option("Diepenheim", "0151");
     document.career.STATE.options[134] = new Option("Diepenveen", "0152");
     document.career.STATE.options[135] = new Option("Diessen", "0763");
     document.career.STATE.options[136] = new Option("Diever", "0111");
     document.career.STATE.options[137] = new Option("Dinteloord En Prinsenlan", "0764");
     document.career.STATE.options[138] = new Option("Dinxperlo", "0219");
     document.career.STATE.options[139] = new Option("Dirksland", "0504");
     document.career.STATE.options[140] = new Option("Dodewaard", "0220");
     document.career.STATE.options[141] = new Option("Doesburg", "0221");
     document.career.STATE.options[142] = new Option("Doetinchem", "0222");
     document.career.STATE.options[143] = new Option("Domburg", "0660");
     document.career.STATE.options[144] = new Option("Dongen", "0766");
     document.career.STATE.options[145] = new Option("Dongeradeel", "0058");
     document.career.STATE.options[146] = new Option("Doorn", "0315");
     document.career.STATE.options[147] = new Option("Dordrecht", "0505");
     document.career.STATE.options[148] = new Option("Drechterland", "0498");
     document.career.STATE.options[149] = new Option("Driebergen-Rijsenburg", "0316");
     document.career.STATE.options[150] = new Option("Dronten", "0303");
     document.career.STATE.options[151] = new Option("Drunen", "0767");
     document.career.STATE.options[152] = new Option("Druten", "0225");
     document.career.STATE.options[153] = new Option("Duiveland", "0662");
     document.career.STATE.options[154] = new Option("Duiven", "0226");
     document.career.STATE.options[155] = new Option("Dussen", "0769");
     document.career.STATE.options[156] = new Option("Dwingeloo", "0112");
     document.career.STATE.options[157] = new Option("Echt", "0902");
     document.career.STATE.options[158] = new Option("Echteld", "0227");
     document.career.STATE.options[159] = new Option("Edam-Volendam", "0385");
     document.career.STATE.options[160] = new Option("Ede", "0228");
     document.career.STATE.options[161] = new Option("Eelde", "0113");
     document.career.STATE.options[162] = new Option("Eemnes", "0317");
     document.career.STATE.options[163] = new Option("Eemsmond", "1651");
     document.career.STATE.options[164] = new Option("Eersel", "0770");
     document.career.STATE.options[165] = new Option("Egmond", "0357");
     document.career.STATE.options[166] = new Option("Eibergen", "0229");
     document.career.STATE.options[167] = new Option("Eijsden", "0905");
     document.career.STATE.options[168] = new Option("Eindhoven", "0772");
     document.career.STATE.options[169] = new Option("Elburg", "0230");
     document.career.STATE.options[170] = new Option("Elst", "0231");
     document.career.STATE.options[171] = new Option("Emmen", "0114");
     document.career.STATE.options[172] = new Option("Enkhuizen", "0388");
     document.career.STATE.options[173] = new Option("Enschede", "0153");
     document.career.STATE.options[174] = new Option("Epe", "0232");
     document.career.STATE.options[175] = new Option("Ermelo", "0233");
     document.career.STATE.options[176] = new Option("Esch", "0776");
     document.career.STATE.options[177] = new Option("Etten-Leur", "0777");
     document.career.STATE.options[178] = new Option("Ferwerderadeel", "0068");
     document.career.STATE.options[179] = new Option("Fijnaart En Heijningen", "0778");
     document.career.STATE.options[180] = new Option("Franekeradeel", "0070");
     document.career.STATE.options[181] = new Option("Gaasterlan-Sleat", "0653");
     document.career.STATE.options[182] = new Option("Gasselte", "0115");
     document.career.STATE.options[183] = new Option("Geertruidenberg", "0779");
     document.career.STATE.options[184] = new Option("Geldermalsen", "0236");
     document.career.STATE.options[185] = new Option("Geldrop", "0781");
     document.career.STATE.options[186] = new Option("Geleen", "0906");
     document.career.STATE.options[187] = new Option("Gemert", "0782");
     document.career.STATE.options[188] = new Option("Gendringen", "0237");
     document.career.STATE.options[189] = new Option("Gendt", "0238");
     document.career.STATE.options[190] = new Option("Genemuiden", "0154");
     document.career.STATE.options[191] = new Option("Gennep", "0907");
     document.career.STATE.options[192] = new Option("Giessenlanden", "0689");
     document.career.STATE.options[193] = new Option("Gieten", "0116");
     document.career.STATE.options[194] = new Option("Gilze En Rijen", "0784");
     document.career.STATE.options[195] = new Option("Goedereede", "0511");
     document.career.STATE.options[196] = new Option("Goes", "0664");
     document.career.STATE.options[197] = new Option("Goirle", "0785");
     document.career.STATE.options[198] = new Option("Goor", "0156");
     document.career.STATE.options[199] = new Option("Gorinchem", "0512");
     document.career.STATE.options[200] = new Option("Gorssel", "0239");
     document.career.STATE.options[201] = new Option("Gouda", "0513");
     document.career.STATE.options[202] = new Option("Graafstroom", "0693");
     document.career.STATE.options[203] = new Option("Graft-De Rijp", "0365");
     document.career.STATE.options[204] = new Option("Gramsbergen", "0157");
     document.career.STATE.options[205] = new Option("Grave", "0786");
     document.career.STATE.options[206] = new Option("Groenlo", "0240");
     document.career.STATE.options[207] = new Option("Groesbeek", "0241");
     document.career.STATE.options[208] = new Option("Groningen", "0014");
     document.career.STATE.options[209] = new Option("Grootegast", "0015");
     document.career.STATE.options[210] = new Option("Grubbenvorst", "0912");
     document.career.STATE.options[211] = new Option("Gulpen", "0913");
     document.career.STATE.options[212] = new Option("Haaksbergen", "0158");
     document.career.STATE.options[213] = new Option("Haaren", "0788");
     document.career.STATE.options[214] = new Option("Haarlem", "0392");
     document.career.STATE.options[215] = new Option("Haarlemmerliede En Spaar", "0393");
     document.career.STATE.options[216] = new Option("Haarlemmermeer", "0394");
     document.career.STATE.options[217] = new Option("Haelen", "0914");
     document.career.STATE.options[218] = new Option("Halsteren", "0789");
     document.career.STATE.options[219] = new Option("Hardenberg", "0160");
     document.career.STATE.options[220] = new Option("Harderwijk", "0243");
     document.career.STATE.options[221] = new Option("Hardinxveld-Giessendam", "0523");
     document.career.STATE.options[222] = new Option("Haren (Gr.)", "0017");
     document.career.STATE.options[223] = new Option("Harenkarspel", "0395");
     document.career.STATE.options[224] = new Option("Harlingen", "0072");
     document.career.STATE.options[225] = new Option("Harmelen", "0318");
     document.career.STATE.options[226] = new Option("Hasselt", "0161");
     document.career.STATE.options[227] = new Option("Hattem", "0244");
     document.career.STATE.options[228] = new Option("Havelte", "0117");
     document.career.STATE.options[229] = new Option("Hedel", "0245");
     document.career.STATE.options[230] = new Option("Heel", "1937");
     document.career.STATE.options[231] = new Option("Heemskerk", "0396");
     document.career.STATE.options[232] = new Option("Heemstede", "0397");
     document.career.STATE.options[233] = new Option("Heerde", "0246");
     document.career.STATE.options[234] = new Option("Heerenveen", "0074");
     document.career.STATE.options[235] = new Option("Heerewaarden", "0247");
     document.career.STATE.options[236] = new Option("Heerhugowaard", "0398");
     document.career.STATE.options[237] = new Option("Heerjansdam", "0526");
     document.career.STATE.options[238] = new Option("Heerlen", "0917");
     document.career.STATE.options[239] = new Option("Heesch", "0791");
     document.career.STATE.options[240] = new Option("Heeze", "0793");
     document.career.STATE.options[241] = new Option("Heiloo", "0399");
     document.career.STATE.options[242] = new Option("Heino", "0162");
     document.career.STATE.options[243] = new Option("Helden", "0918");
     document.career.STATE.options[244] = new Option("Hellendoorn", "0163");
     document.career.STATE.options[245] = new Option("Hellevoetsluis", "0530");
     document.career.STATE.options[246] = new Option("Helmond", "0794");
     document.career.STATE.options[247] = new Option("Helvoirt", "0795");
     document.career.STATE.options[248] = new Option("Hendrik-Ido-Ambacht", "0531");
     document.career.STATE.options[249] = new Option("Hengelo (Gld)", "0248");
     document.career.STATE.options[250] = new Option("Hengelo (Ov)", "0164");
     document.career.STATE.options[251] = new Option("Het Bildt", "0063");
     document.career.STATE.options[252] = new Option("Heteren", "0251");
     document.career.STATE.options[253] = new Option("Heumen", "0252");
     document.career.STATE.options[254] = new Option("Heusden", "0797");
     document.career.STATE.options[255] = new Option("Heythuysen", "0920");
     document.career.STATE.options[256] = new Option("Hillegom", "0534");
     document.career.STATE.options[257] = new Option("Hilvarenbeek", "0798");
     document.career.STATE.options[258] = new Option("Hilversum", "0402");
     document.career.STATE.options[259] = new Option("Hoevelaken", "0253");
     document.career.STATE.options[260] = new Option("Hoeven", "0799");
     document.career.STATE.options[261] = new Option("Holten", "0165");
     document.career.STATE.options[262] = new Option("Hontenisse", "0675");
     document.career.STATE.options[263] = new Option("Hooge En Lage Mierde", "0801");
     document.career.STATE.options[264] = new Option("Hooge En Lage Zwaluwe", "0802");
     document.career.STATE.options[265] = new Option("Hoogeloon,Hapert En Cast", "0800");
     document.career.STATE.options[266] = new Option("Hoogeveen", "0118");
     document.career.STATE.options[267] = new Option("Hoogezand-Sappemeer", "0018");
     document.career.STATE.options[268] = new Option("Hoorn", "0405");
     document.career.STATE.options[269] = new Option("Horst", "0923");
     document.career.STATE.options[270] = new Option("Houten", "0321");
     document.career.STATE.options[271] = new Option("Huijbergen", "0803");
     document.career.STATE.options[272] = new Option("Huissen", "0255");
     document.career.STATE.options[273] = new Option("Huizen", "0406");
     document.career.STATE.options[274] = new Option("Hulst", "0677");
     document.career.STATE.options[275] = new Option("Hummelo En Keppel", "0256");
     document.career.STATE.options[276] = new Option("Hunsel", "0925");
     document.career.STATE.options[277] = new Option("Ijsselham", "0195");
     document.career.STATE.options[278] = new Option("Ijsselmuiden", "0191");
     document.career.STATE.options[279] = new Option("Ijsselstein", "0353");
     document.career.STATE.options[280] = new Option("Jacobswoude", "0645");
     document.career.STATE.options[281] = new Option("Kampen", "0166");
     document.career.STATE.options[282] = new Option("Kapelle", "0678");
     document.career.STATE.options[283] = new Option("Katwijk", "0537");
     document.career.STATE.options[284] = new Option("Kerkrade", "0928");
     document.career.STATE.options[285] = new Option("Kerkwijk", "0257");
     document.career.STATE.options[286] = new Option("Kessel", "0929");
     document.career.STATE.options[287] = new Option("Kesteren", "0258");
     document.career.STATE.options[288] = new Option("Klundert", "0804");
     document.career.STATE.options[289] = new Option("Kollumerland C.A.", "0079");
     document.career.STATE.options[290] = new Option("Korendijk", "0588");
     document.career.STATE.options[291] = new Option("Kortgene", "0682");
     document.career.STATE.options[292] = new Option("Krimpen Aan Den Ijssel", "0542");
     document.career.STATE.options[293] = new Option("Landerd", "1685");
     document.career.STATE.options[294] = new Option("Landgraaf", "0882");
     document.career.STATE.options[295] = new Option("Landsmeer", "0415");
     document.career.STATE.options[296] = new Option("Langbroek", "0325");
     document.career.STATE.options[297] = new Option("Langedijk", "0416");
     document.career.STATE.options[298] = new Option("Laren Nh", "0417");
     document.career.STATE.options[299] = new Option("Leek", "0022");
     document.career.STATE.options[300] = new Option("Leende", "0805");
     document.career.STATE.options[301] = new Option("Leerdam", "0545");
     document.career.STATE.options[302] = new Option("Leersum", "0326");
     document.career.STATE.options[303] = new Option("Leeuwarden", "0080");
     document.career.STATE.options[304] = new Option("Leeuwarderadeel", "0081");
     document.career.STATE.options[305] = new Option("Leiden", "0546");
     document.career.STATE.options[306] = new Option("Leiderdorp", "0547");
     document.career.STATE.options[307] = new Option("Leidschendam", "0548");
     document.career.STATE.options[308] = new Option("Lelystad", "0995");
     document.career.STATE.options[309] = new Option("Lemsterland", "0082");
     document.career.STATE.options[310] = new Option("Leusden", "0327");
     document.career.STATE.options[311] = new Option("Lichtenvoorde", "0260");
     document.career.STATE.options[312] = new Option("Liemeer", "1673");
     document.career.STATE.options[313] = new Option("Liempde", "0806");
     document.career.STATE.options[314] = new Option("Lienden", "0261");
     document.career.STATE.options[315] = new Option("Lieshout", "0807");
     document.career.STATE.options[316] = new Option("Liesveld", "0694");
     document.career.STATE.options[317] = new Option("Limmen", "0418");
     document.career.STATE.options[318] = new Option("Lingewaal", "0733");
     document.career.STATE.options[319] = new Option("Lisse", "0553");
     document.career.STATE.options[320] = new Option("Lith", "0808");
     document.career.STATE.options[321] = new Option("Littenseradiel", "0140");
     document.career.STATE.options[322] = new Option("Lochem", "0262");
     document.career.STATE.options[323] = new Option("Loenen", "0329");
     document.career.STATE.options[324] = new Option("Loon Op Zand", "0809");
     document.career.STATE.options[325] = new Option("Loosdrecht", "0330");
     document.career.STATE.options[326] = new Option("Lopik", "0331");
     document.career.STATE.options[327] = new Option("Loppersum", "0024");
     document.career.STATE.options[328] = new Option("Losser", "0168");
     document.career.STATE.options[329] = new Option("Luyksgestel", "0810");
     document.career.STATE.options[330] = new Option("Maarheeze", "0811");
     document.career.STATE.options[331] = new Option("Maarn", "0332");
     document.career.STATE.options[332] = new Option("Maarssen", "0333");
     document.career.STATE.options[333] = new Option("Maartensdijk", "0334");
     document.career.STATE.options[334] = new Option("Maasbracht", "0933");
     document.career.STATE.options[335] = new Option("Maasbree", "0934");
     document.career.STATE.options[336] = new Option("Maasdonk", "1671");
     document.career.STATE.options[337] = new Option("Maasdriel", "0263");
     document.career.STATE.options[338] = new Option("Maasland", "0555");
     document.career.STATE.options[339] = new Option("Maassluis", "0556");
     document.career.STATE.options[340] = new Option("Maastricht", "0935");
     document.career.STATE.options[341] = new Option("Made En Drimmelen", "0812");
     document.career.STATE.options[342] = new Option("Margraten", "0936");
     document.career.STATE.options[343] = new Option("Mariekerke", "0686");
     document.career.STATE.options[344] = new Option("Markelo", "0169");
     document.career.STATE.options[345] = new Option("Marum", "0025");
     document.career.STATE.options[346] = new Option("Maurik", "0264");
     document.career.STATE.options[347] = new Option("Medemblik", "0420");
     document.career.STATE.options[348] = new Option("Meerlo-Wanssum", "0993");
     document.career.STATE.options[349] = new Option("Meerssen", "0938");
     document.career.STATE.options[350] = new Option("Meijel", "0941");
     document.career.STATE.options[351] = new Option("Menaldumadeel", "0083");
     document.career.STATE.options[352] = new Option("Menterwolde", "1987");
     document.career.STATE.options[353] = new Option("Meppel", "0119");
     document.career.STATE.options[354] = new Option("Middelburg", "0687");
     document.career.STATE.options[355] = new Option("Middelharnis", "0559");
     document.career.STATE.options[356] = new Option("Middenschouwen", "0688");
     document.career.STATE.options[357] = new Option("Mierlo", "0814");
     document.career.STATE.options[358] = new Option("Mill En Sint Hubert", "0815");
     document.career.STATE.options[359] = new Option("Millingen Aan De Rijn", "0265");
     document.career.STATE.options[360] = new Option("Moergestel", "0816");
     document.career.STATE.options[361] = new Option("Monster", "0562");
     document.career.STATE.options[362] = new Option("Montfoort", "0335");
     document.career.STATE.options[363] = new Option("Mook En Middelaar", "0944");
     document.career.STATE.options[364] = new Option("Moordrecht", "0563");
     document.career.STATE.options[365] = new Option("Muiden", "0424");
     document.career.STATE.options[366] = new Option("Naaldwijk", "0565");
     document.career.STATE.options[367] = new Option("Naarden", "0425");
     document.career.STATE.options[368] = new Option("Nederhorst Den Berg", "0426");
     document.career.STATE.options[369] = new Option("Nederlek", "0643");
     document.career.STATE.options[370] = new Option("Nederweert", "0946");
     document.career.STATE.options[371] = new Option("Neede", "0266");
     document.career.STATE.options[372] = new Option("Neerijnen", "0304");
     document.career.STATE.options[373] = new Option("Niedorp", "0412");
     document.career.STATE.options[374] = new Option("Nieuw-Ginneken", "0817");
     document.career.STATE.options[375] = new Option("Nieuw-Lekkerland", "0571");
     document.career.STATE.options[376] = new Option("Nieuw-Vossemeer", "0818");
     document.career.STATE.options[377] = new Option("Nieuwegein", "0356");
     document.career.STATE.options[378] = new Option("Nieuwerkerk Aan Den Ijss", "0567");
     document.career.STATE.options[379] = new Option("Nieuwkoop", "0569");
     document.career.STATE.options[380] = new Option("Nieuwleusen", "0170");
     document.career.STATE.options[381] = new Option("Nijefurd", "0104");
     document.career.STATE.options[382] = new Option("Nijeveen", "0121");
     document.career.STATE.options[383] = new Option("Nijkerk", "0267");
     document.career.STATE.options[384] = new Option("Nijmegen", "0268");
     document.career.STATE.options[385] = new Option("Noorder-Koggenland", "0529");
     document.career.STATE.options[386] = new Option("Noordoostpolder", "0171");
     document.career.STATE.options[387] = new Option("Noordwijk", "0575");
     document.career.STATE.options[388] = new Option("Noordwijkerhout", "0576");
     document.career.STATE.options[389] = new Option("Nootdorp", "0577");
     document.career.STATE.options[390] = new Option("Norg", "0120");
     document.career.STATE.options[391] = new Option("Nuenen,Gerwen En Nederwe", "0820");
     document.career.STATE.options[392] = new Option("Nunspeet", "0302");
     document.career.STATE.options[393] = new Option("Nuth", "0951");
     document.career.STATE.options[394] = new Option("Obdam", "0429");
     document.career.STATE.options[395] = new Option("Odoorn", "0122");
     document.career.STATE.options[396] = new Option("Oegstgeest", "0579");
     document.career.STATE.options[397] = new Option("Oirschot", "0823");
     document.career.STATE.options[398] = new Option("Oisterwijk", "0824");
     document.career.STATE.options[399] = new Option("Oldebroek", "0269");
     document.career.STATE.options[400] = new Option("Oldenzaal", "0173");
     document.career.STATE.options[401] = new Option("Olst", "0174");
     document.career.STATE.options[402] = new Option("Ommen", "0175");
     document.career.STATE.options[403] = new Option("Onderbanken", "0881");
     document.career.STATE.options[404] = new Option("Oost-,West-En Middelbeer", "0825");
     document.career.STATE.options[405] = new Option("Oostburg", "0692");
     document.career.STATE.options[406] = new Option("Oosterhesselen", "0123");
     document.career.STATE.options[407] = new Option("Oosterhout", "0826");
     document.career.STATE.options[408] = new Option("Oostflakkee", "0580");
     document.career.STATE.options[409] = new Option("Ooststellingwerf", "0085");
     document.career.STATE.options[410] = new Option("Oostzaan", "0431");
     document.career.STATE.options[411] = new Option("Ootmarsum", "0176");
     document.career.STATE.options[412] = new Option("Opmeer", "0432");
     document.career.STATE.options[413] = new Option("Opsterland", "0086");
     document.career.STATE.options[414] = new Option("Oss", "0828");
     document.career.STATE.options[415] = new Option("Ossendrecht", "0829");
     document.career.STATE.options[416] = new Option("Oud En Nieuw Gastel", "0831");
     document.career.STATE.options[417] = new Option("Oud-Beijerland", "0584");
     document.career.STATE.options[418] = new Option("Oudenbosch", "0830");
     document.career.STATE.options[419] = new Option("Ouder-Amstel", "0437");
     document.career.STATE.options[420] = new Option("Ouderkerk", "0644");
     document.career.STATE.options[421] = new Option("Oudewater", "0589");
     document.career.STATE.options[422] = new Option("Papendrecht", "0590");
     document.career.STATE.options[423] = new Option("Peize", "0124");
     document.career.STATE.options[424] = new Option("Pekela", "0765");
     document.career.STATE.options[425] = new Option("Pijnacker", "0594");
     document.career.STATE.options[426] = new Option("Prinsenbeek", "0832");
     document.career.STATE.options[427] = new Option("Purmerend", "0439");
     document.career.STATE.options[428] = new Option("Putte", "0833");
     document.career.STATE.options[429] = new Option("Putten", "0273");
     document.career.STATE.options[430] = new Option("Raalte", "0177");
     document.career.STATE.options[431] = new Option("Raamsdonk", "0834");
     document.career.STATE.options[432] = new Option("Ravenstein", "0835");
     document.career.STATE.options[433] = new Option("Reeuwijk", "0595");
     document.career.STATE.options[434] = new Option("Reiderland", "1661");
     document.career.STATE.options[435] = new Option("Reimerswaal", "0703");
     document.career.STATE.options[436] = new Option("Renkum", "0274");
     document.career.STATE.options[437] = new Option("Renswoude", "0339");
     document.career.STATE.options[438] = new Option("Reusel", "0836");
     document.career.STATE.options[439] = new Option("Rheden", "0275");
     document.career.STATE.options[440] = new Option("Rhenen", "0340");
     document.career.STATE.options[441] = new Option("Ridderkerk", "0597");
     document.career.STATE.options[442] = new Option("Riethoven", "0837");
     document.career.STATE.options[443] = new Option("Rijnsburg", "0602");
     document.career.STATE.options[444] = new Option("Rijnwaarden", "0196");
     document.career.STATE.options[445] = new Option("Rijnwoude", "1672");
     document.career.STATE.options[446] = new Option("Rijsbergen", "0841");
     document.career.STATE.options[447] = new Option("Rijssen", "0178");
     document.career.STATE.options[448] = new Option("Rijswijk (Z.H.)", "0603");
     document.career.STATE.options[449] = new Option("Roden", "0125");
     document.career.STATE.options[450] = new Option("Roerdalen", "1669");
     document.career.STATE.options[451] = new Option("Roermond", "0957");
     document.career.STATE.options[452] = new Option("Roggel En Neer", "1670");
     document.career.STATE.options[453] = new Option("Rolde", "0126");
     document.career.STATE.options[454] = new Option("Roosendaal En Nispen", "0838");
     document.career.STATE.options[455] = new Option("Rosmalen", "0839");
     document.career.STATE.options[456] = new Option("Rossum", "0276");
     document.career.STATE.options[457] = new Option("Rotterdam", "0599");
     document.career.STATE.options[458] = new Option("Rozenburg", "0600");
     document.career.STATE.options[459] = new Option("Rozendaal", "0277");
     document.career.STATE.options[460] = new Option("Rucphen", "0840");
     document.career.STATE.options[461] = new Option("Ruinen", "0127");
     document.career.STATE.options[462] = new Option("Ruinerwold", "0128");
     document.career.STATE.options[463] = new Option("Ruurlo", "0278");
     document.career.STATE.options[464] = new Option("Sas Van Gent", "0704");
     document.career.STATE.options[465] = new Option("Sassenheim", "0604");
     document.career.STATE.options[466] = new Option("Schagen", "0441");
     document.career.STATE.options[467] = new Option("Scheemda", "0039");
     document.career.STATE.options[468] = new Option("Schermer", "0458");
     document.career.STATE.options[469] = new Option("Scherpenzeel", "0279");
     document.career.STATE.options[470] = new Option("Schiedam", "0606");
     document.career.STATE.options[471] = new Option("Schiermonnikoog", "0088");
     document.career.STATE.options[472] = new Option("Schijndel", "0844");
     document.career.STATE.options[473] = new Option("Schinnen", "0962");
     document.career.STATE.options[474] = new Option("Schipluiden", "0607");
     document.career.STATE.options[475] = new Option("Schoonebeek", "0129");
     document.career.STATE.options[476] = new Option("Schoonhoven", "0608");
     document.career.STATE.options[477] = new Option("Schoorl", "0444");
     document.career.STATE.options[478] = new Option("Sevenum", "0964");
     document.career.STATE.options[479] = new Option("Simpelveld", "0965");
     document.career.STATE.options[480] = new Option("Sint Anthonis", "1691");
     document.career.STATE.options[481] = new Option("Sint Michielsgestel", "0845");
     document.career.STATE.options[482] = new Option("Sint Oedenrode", "0846");
     document.career.STATE.options[483] = new Option("Sint Philipsland", "0712");
     document.career.STATE.options[484] = new Option("Sittard", "0968");
     document.career.STATE.options[485] = new Option("Skarsterlan", "0051");
     document.career.STATE.options[486] = new Option("Sleen", "0130");
     document.career.STATE.options[487] = new Option("Sliedrecht", "0610");
     document.career.STATE.options[488] = new Option("Slochteren", "0040");
     document.career.STATE.options[489] = new Option("Sluis", "0713");
     document.career.STATE.options[490] = new Option("Smallingerland", "0090");
     document.career.STATE.options[491] = new Option("Smilde", "0131");
     document.career.STATE.options[492] = new Option("Sneek", "0091");
     document.career.STATE.options[493] = new Option("Soest", "0342");
     document.career.STATE.options[494] = new Option("Someren", "0847");
     document.career.STATE.options[495] = new Option("Son En Breugel", "0848");
     document.career.STATE.options[496] = new Option("Spijkenisse", "0612");
     document.career.STATE.options[497] = new Option("Sprang-Capelle", "0849");
     document.career.STATE.options[498] = new Option("Stad Delden", "0179");
     document.career.STATE.options[499] = new Option("Stadskanaal", "0037");
     document.career.STATE.options[500] = new Option("Standdaarbuiten", "0850");
     document.career.STATE.options[501] = new Option("Staphorst", "0180");
     document.career.STATE.options[502] = new Option("Stede Broec", "0532");
     document.career.STATE.options[503] = new Option("Steenbergen", "0851");
     document.career.STATE.options[504] = new Option("Steenderen", "0280");
     document.career.STATE.options[505] = new Option("Steenwijk", "0181");
     document.career.STATE.options[506] = new Option("Stein", "0971");
     document.career.STATE.options[507] = new Option("Stramproy", "0973");
     document.career.STATE.options[508] = new Option("Strijen", "0617");
     document.career.STATE.options[509] = new Option("Susteren", "0974");
     document.career.STATE.options[510] = new Option("Swalmen", "0975");
     document.career.STATE.options[511] = new Option("Tegelen", "0976");
     document.career.STATE.options[512] = new Option("Ten Boer", "0009");
     document.career.STATE.options[513] = new Option("Ter Aar", "0480");
     document.career.STATE.options[514] = new Option("Terheijden", "0853");
     document.career.STATE.options[515] = new Option("Terneuzen", "0715");
     document.career.STATE.options[516] = new Option("Terschelling", "0093");
     document.career.STATE.options[517] = new Option("Teteringen", "0854");
     document.career.STATE.options[518] = new Option("Texel", "0448");
     document.career.STATE.options[519] = new Option("Tholen", "0716");
     document.career.STATE.options[520] = new Option("Thorn", "0977");
     document.career.STATE.options[521] = new Option("Tiel", "0281");
     document.career.STATE.options[522] = new Option("Tilburg", "0855");
     document.career.STATE.options[523] = new Option("Tubbergen", "0183");
     document.career.STATE.options[524] = new Option("Tytsjerksteradiel", "0737");
     document.career.STATE.options[525] = new Option("Ubbergen", "0282");
     document.career.STATE.options[526] = new Option("Uden", "0856");
     document.career.STATE.options[527] = new Option("Udenhout", "0857");
     document.career.STATE.options[528] = new Option("Uitgeest", "0450");
     document.career.STATE.options[529] = new Option("Uithoorn", "0451");
     document.career.STATE.options[530] = new Option("Urk", "0184");
     document.career.STATE.options[531] = new Option("Utrecht", "0344");
     document.career.STATE.options[532] = new Option("Vaals", "0981");
     document.career.STATE.options[533] = new Option("Valburg", "0283");
     document.career.STATE.options[534] = new Option("Valkenburg (Z.H.)", "0619");
     document.career.STATE.options[535] = new Option("Valkenburg A/D Geul", "0994");
     document.career.STATE.options[536] = new Option("Valkenisse", "0720");
     document.career.STATE.options[537] = new Option("Valkenswaard", "0858");
     document.career.STATE.options[538] = new Option("Veendam", "0047");
     document.career.STATE.options[539] = new Option("Veenendaal", "0345");
     document.career.STATE.options[540] = new Option("Veere", "0717");
     document.career.STATE.options[541] = new Option("Veghel", "0860");
     document.career.STATE.options[542] = new Option("Veldhoven", "0861");
     document.career.STATE.options[543] = new Option("Velsen", "0453");
     document.career.STATE.options[544] = new Option("Venhuizen", "0454");
     document.career.STATE.options[545] = new Option("Venlo", "0983");
     document.career.STATE.options[546] = new Option("Venray", "0984");
     document.career.STATE.options[547] = new Option("Vessem,Wintelre En Knegs", "0862");
     document.career.STATE.options[548] = new Option("Vianen", "0620");
     document.career.STATE.options[549] = new Option("Vierlingsbeek", "0863");
     document.career.STATE.options[550] = new Option("Vlaardingen", "0622");
     document.career.STATE.options[551] = new Option("Vlagtwedde", "0048");
     document.career.STATE.options[552] = new Option("Vledder", "0132");
     document.career.STATE.options[553] = new Option("Vleuten-De Meern", "0347");
     document.career.STATE.options[554] = new Option("Vlieland", "0096");
     document.career.STATE.options[555] = new Option("Vlijmen", "0864");
     document.career.STATE.options[556] = new Option("Vlissingen", "0718");
     document.career.STATE.options[557] = new Option("Vlist", "0623");
     document.career.STATE.options[558] = new Option("Voerendaal", "0986");
     document.career.STATE.options[559] = new Option("Voorburg", "0624");
     document.career.STATE.options[560] = new Option("Voorhout", "0625");
     document.career.STATE.options[561] = new Option("Voorschoten", "0626");
     document.career.STATE.options[562] = new Option("Voorst", "0285");
     document.career.STATE.options[563] = new Option("Vorden", "0286");
     document.career.STATE.options[564] = new Option("Vries", "0133");
     document.career.STATE.options[565] = new Option("Vriezenveen", "0186");
     document.career.STATE.options[566] = new Option("Vught", "0865");
     document.career.STATE.options[567] = new Option("Waalre", "0866");
     document.career.STATE.options[568] = new Option("Waalwijk", "0867");
     document.career.STATE.options[569] = new Option("Waddinxveen", "0627");
     document.career.STATE.options[570] = new Option("Wageningen", "0289");
     document.career.STATE.options[571] = new Option("Warmond", "0628");
     document.career.STATE.options[572] = new Option("Warnsveld", "0291");
     document.career.STATE.options[573] = new Option("Waspik", "0869");
     document.career.STATE.options[574] = new Option("Wassenaar", "0629");
     document.career.STATE.options[575] = new Option("Wateringen", "0630");
     document.career.STATE.options[576] = new Option("Waterland", "0852");
     document.career.STATE.options[577] = new Option("Weerselo", "0188");
     document.career.STATE.options[578] = new Option("Weert", "0988");
     document.career.STATE.options[579] = new Option("Weesp", "0457");
     document.career.STATE.options[580] = new Option("Wehl", "0292");
     document.career.STATE.options[581] = new Option("Werkendam", "0870");
     document.career.STATE.options[582] = new Option("Wervershoof", "0459");
     document.career.STATE.options[583] = new Option("West Maas En Waal", "0668");
     document.career.STATE.options[584] = new Option("Wester-Koggenland", "0558");
     document.career.STATE.options[585] = new Option("Westerbork", "0134");
     document.career.STATE.options[586] = new Option("Westerhoven", "0871");
     document.career.STATE.options[587] = new Option("Westerschouwen", "0725");
     document.career.STATE.options[588] = new Option("Westervoort", "0293");
     document.career.STATE.options[589] = new Option("Westkapelle", "0726");
     document.career.STATE.options[590] = new Option("Weststellingwerf", "0098");
     document.career.STATE.options[591] = new Option("Westvoorne", "0614");
     document.career.STATE.options[592] = new Option("Wierden", "0189");
     document.career.STATE.options[593] = new Option("Wieringen", "0462");
     document.career.STATE.options[594] = new Option("Wieringermeer", "0463");
     document.career.STATE.options[595] = new Option("Wijchen", "0296");
     document.career.STATE.options[596] = new Option("Wijhe", "0190");
     document.career.STATE.options[597] = new Option("Wijk Bij Duurstede", "0352");
     document.career.STATE.options[598] = new Option("Willemstad", "0872");
     document.career.STATE.options[599] = new Option("Winschoten", "0052");
     document.career.STATE.options[600] = new Option("Winsum", "0053");
     document.career.STATE.options[601] = new Option("Winterswijk", "0294");
     document.career.STATE.options[602] = new Option("Wisch", "0295");
     document.career.STATE.options[603] = new Option("Wissenkerke", "0727");
     document.career.STATE.options[604] = new Option("Wittem", "0990");
     document.career.STATE.options[605] = new Option("Woensdrecht", "0873");
     document.career.STATE.options[606] = new Option("Woerden", "0632");
     document.career.STATE.options[607] = new Option("Wognum", "0466");
     document.career.STATE.options[608] = new Option("Wormerland", "0880");
     document.career.STATE.options[609] = new Option("Woudenberg", "0351");
     document.career.STATE.options[610] = new Option("Woudrichem", "0874");
     document.career.STATE.options[611] = new Option("Wouw", "0875");
     document.career.STATE.options[612] = new Option("Wunseradiel", "0710");
     document.career.STATE.options[613] = new Option("Wymbritseradiel", "0683");
     document.career.STATE.options[614] = new Option("Zaanstad", "0479");
     document.career.STATE.options[615] = new Option("Zaltbommel", "0297");
     document.career.STATE.options[616] = new Option("Zandvoort", "0473");
     document.career.STATE.options[617] = new Option("Zederik", "0707");
     document.career.STATE.options[618] = new Option("Zeevang", "0478");
     document.career.STATE.options[619] = new Option("Zeewolde", "0050");
     document.career.STATE.options[620] = new Option("Zeist", "0355");
     document.career.STATE.options[621] = new Option("Zelhem", "0298");
     document.career.STATE.options[622] = new Option("Zevenaar", "0299");
     document.career.STATE.options[623] = new Option("Zevenbergen", "0878");
     document.career.STATE.options[624] = new Option("Zevenhuizen-Moerkapelle", "1666");
     document.career.STATE.options[625] = new Option("Zierikzee", "0732");
     document.career.STATE.options[626] = new Option("Zijpe", "0476");
     document.career.STATE.options[627] = new Option("Zoetermeer", "0637");
     document.career.STATE.options[628] = new Option("Zoeterwoude", "0638");
     document.career.STATE.options[629] = new Option("Zuidelijke Ijsselmeerpol", "0996");
     document.career.STATE.options[630] = new Option("Zuidhorn", "0056");
     document.career.STATE.options[631] = new Option("Zuidlaren", "0136");
     document.career.STATE.options[632] = new Option("Zuidwolde", "0137");
     document.career.STATE.options[633] = new Option("Zundert", "0879");
     document.career.STATE.options[634] = new Option("Zutphen", "0301");
     document.career.STATE.options[635] = new Option("Zwartsluis", "0192");
     document.career.STATE.options[636] = new Option("Zweeloo", "0138");
     document.career.STATE.options[637] = new Option("Zwijndrecht", "0642");
     document.career.STATE.options[638] = new Option("Zwolle", "0193");
     break;
   case "USA":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Alabama", "AL");
     document.career.STATE.options[2] = new Option("Alaska", "AK");
     document.career.STATE.options[3] = new Option("Arizona", "AZ");
     document.career.STATE.options[4] = new Option("Arkansas", "AR");
     document.career.STATE.options[5] = new Option("California", "CA");
     document.career.STATE.options[6] = new Option("Colorado", "CO");
     document.career.STATE.options[7] = new Option("Connecticut", "CT");
     document.career.STATE.options[8] = new Option("Delaware", "DE");
     document.career.STATE.options[9] = new Option("District of Columbia", "DC");
     document.career.STATE.options[10] = new Option("Florida", "FL");
     document.career.STATE.options[11] = new Option("Georgia", "GA");
     document.career.STATE.options[12] = new Option("Hawaii", "HI");
     document.career.STATE.options[13] = new Option("Idaho", "ID");
     document.career.STATE.options[14] = new Option("Illinois", "IL");
     document.career.STATE.options[15] = new Option("Indiana", "IN");
     document.career.STATE.options[16] = new Option("Iowa", "IA");
     document.career.STATE.options[17] = new Option("Kansas", "KS");
     document.career.STATE.options[18] = new Option("Kentucky", "KY");
     document.career.STATE.options[19] = new Option("Louisiana", "LA");
     document.career.STATE.options[20] = new Option("Maine", "ME");
     document.career.STATE.options[21] = new Option("Maryland", "MD");
     document.career.STATE.options[22] = new Option("Massachusetts", "MA");
     document.career.STATE.options[23] = new Option("Michigan", "MI");
     document.career.STATE.options[24] = new Option("Minnesota", "MN");
     document.career.STATE.options[25] = new Option("Mississippi", "MS");
     document.career.STATE.options[26] = new Option("Missouri", "MO");
     document.career.STATE.options[27] = new Option("Montana", "MT");
     document.career.STATE.options[28] = new Option("Nebraska", "NE");
     document.career.STATE.options[29] = new Option("Nevada", "NV");
     document.career.STATE.options[30] = new Option("New Hampshire", "NH");
     document.career.STATE.options[31] = new Option("New Jersey", "NJ");
     document.career.STATE.options[32] = new Option("New Mexico", "NM");
     document.career.STATE.options[33] = new Option("New York", "NY");
     document.career.STATE.options[34] = new Option("North Carolina", "NC");
     document.career.STATE.options[35] = new Option("North Dakota", "ND");
     document.career.STATE.options[36] = new Option("Ohio", "OH");
     document.career.STATE.options[37] = new Option("Oklahoma", "OK");
     document.career.STATE.options[38] = new Option("Oregon", "OR");
     document.career.STATE.options[39] = new Option("Pennsylvania", "PA");
     document.career.STATE.options[40] = new Option("Rhode Island", "RI");
     document.career.STATE.options[41] = new Option("South Carolina", "SC");
     document.career.STATE.options[42] = new Option("South Dakota", "SD");
     document.career.STATE.options[43] = new Option("Tennessee", "TN");
     document.career.STATE.options[44] = new Option("Texas", "TX");
     document.career.STATE.options[45] = new Option("Utah", "UT");
     document.career.STATE.options[46] = new Option("Vermont", "VT");
     document.career.STATE.options[47] = new Option("Virginia", "VA");
     document.career.STATE.options[48] = new Option("Washington", "WA");
     document.career.STATE.options[49] = new Option("West Virginia", "WV");
     document.career.STATE.options[50] = new Option("Wisconsin", "WI");
     document.career.STATE.options[51] = new Option("Wyoming", "WY");
     break;
   case "VEN":
     document.career.STATE.options[0] = new Option("Please Select", "");
     document.career.STATE.options[1] = new Option("Anzoategui", "AN");
     document.career.STATE.options[2] = new Option("Apure", "AP");
     document.career.STATE.options[3] = new Option("Aragua", "AR");
     document.career.STATE.options[4] = new Option("Barinas", "BA");
     document.career.STATE.options[5] = new Option("Bolivar", "BO");
     document.career.STATE.options[6] = new Option("Carabobo", "CA");
     document.career.STATE.options[7] = new Option("Cojedes", "CO");
     document.career.STATE.options[8] = new Option("Delta Amacuro", "DA");
     document.career.STATE.options[9] = new Option("Falcon", "FA");
     document.career.STATE.options[10] = new Option("Guarico", "GU");
     document.career.STATE.options[11] = new Option("Lara", "LA");
     document.career.STATE.options[12] = new Option("Merida", "ME");
     document.career.STATE.options[13] = new Option("Miranda", "MI");
     document.career.STATE.options[14] = new Option("Monagas", "MO");
     document.career.STATE.options[15] = new Option("Nueva Esparta", "NE");
     document.career.STATE.options[16] = new Option("Portuguesa", "PO");
     document.career.STATE.options[17] = new Option("Sucre", "SU");
     document.career.STATE.options[18] = new Option("Tachira", "TA");
     document.career.STATE.options[19] = new Option("Trujillo", "TR");
     document.career.STATE.options[20] = new Option("Yaracuy", "YA");
     document.career.STATE.options[21] = new Option("Zulia", "ZU");
     break;
   default:
      document.career.STATE.options[0] = new Option("No State Required", "")
	  break;
}
}
