
<!--
cityCnt = 150;
city = new Array(150);
city[0] = "Aguila";
city[1] = "Ahwatukee";
city[2] = "Anthem";
city[3] = "Apache";
city[4] = "Apache Junction";
city[5] = "Arizona City";
city[6] = "Arlington";
city[7] = "Ash Fork";
city[8] = "Avondale";
city[9] = "Benson";
city[10] = "Bisbee";
city[11] = "Black Canyon City";
city[12] = "Buckeye";
city[13] = "Bullhead City";
city[14] = "Camp Verde";
city[15] = "Cane Beds";
city[16] = "Carefree";
city[17] = "Casa Grande";
city[18] = "Cave Creek";
city[19] = "Chandler";
city[20] = "Chino Valley";
city[21] = "Christopher Creek";
city[22] = "Circle City";
city[23] = "Clarkdale";
city[24] = "Concho";
city[25] = "Congress";
city[26] = "Coolidge";
city[27] = "Cordes Lakes";
city[28] = "Cornville";
city[29] = "Crown King";
city[30] = "Dateland";
city[31] = "Desert Hills";
city[32] = "Dewey";
city[33] = "Dolan Springs";
city[34] = "Douglas";
city[35] = "Eagar";
city[36] = "El Mirage";
city[37] = "Elfrida";
city[38] = "Elgin";
city[39] = "Eloy";
city[40] = "Flagstaff";
city[41] = "Florence";
city[42] = "Forest Lakes";
city[43] = "Fort Mcdowell";
city[44] = "Fort Mohave";
city[45] = "Fountain Hills";
city[46] = "Fredonia";
city[47] = "Gilbert";
city[48] = "Gisela";
city[49] = "Glendale";
city[50] = "Globe";
city[51] = "Gold Canyon";
city[52] = "Golden Valley";
city[53] = "Goodyear";
city[54] = "Greenehaven";
city[55] = "Hackberry";
city[56] = "Happy Jack";
city[57] = "Hayden";
city[58] = "Heber";
city[59] = "Hereford";
city[60] = "Higley";
city[61] = "Humboldt";
city[62] = "Jerome";
city[63] = "Kearny";
city[64] = "Kingman";
city[65] = "Kirkland";
city[66] = "Lakeside";
city[67] = "Laveen";
city[68] = "Litchfield Park";
city[69] = "Mammoth";
city[70] = "Marana";
city[71] = "Maricopa";
city[72] = "Mesa";
city[73] = "Miami";
city[74] = "Mormon Lake";
city[75] = "Morristown";
city[76] = "Mountainaire";
city[77] = "Munds Park";
city[78] = "Munds Park/pinew";
city[79] = "New River";
city[80] = "Oracle";
city[81] = "Oro Valley";
city[82] = "Outside Arizona";
city[83] = "Outside Of Usa";
city[84] = "Overgaard";
city[85] = "Page";
city[86] = "Palo Verde";
city[87] = "Paradise Valley";
city[88] = "Parks";
city[89] = "Paulden";
city[90] = "Payson";
city[91] = "Pearce";
city[92] = "Peeples Valley";
city[93] = "Peoria";
city[94] = "Phoenix";
city[95] = "Picacho";
city[96] = "Pine";
city[97] = "Pinetop";
city[98] = "Portal";
city[99] = "Prescott";
city[100] = "Prescott Valley";
city[101] = "Queen Creek";
city[102] = "Queen Valley";
city[103] = "Red Rock";
city[104] = "Rimrock";
city[105] = "Rio Verde";
city[106] = "Safford";
city[107] = "Salome";
city[108] = "San Tan Valley";
city[109] = "Scottsdale";
city[110] = "Sedona";
city[111] = "Seligman";
city[112] = "Show Low";
city[113] = "Sierra Vista";
city[114] = "Skull Valley";
city[115] = "Snowflake";
city[116] = "Spring Valley";
city[117] = "Springerville";
city[118] = "Stanfield";
city[119] = "Star Valley";
city[120] = "Strawberry";
city[121] = "Sun City";
city[122] = "Sun City West";
city[123] = "Sun Lakes";
city[124] = "Superior";
city[125] = "Surprise";
city[126] = "Taylor";
city[127] = "Tempe";
city[128] = "Tolleson";
city[129] = "Tonopah";
city[130] = "Tonto Basin";
city[131] = "Tubac";
city[132] = "Tucson";
city[133] = "Tumacacori";
city[134] = "Unincorporated Count";
city[135] = "Vail";
city[136] = "Valley Farms";
city[137] = "Vernon";
city[138] = "Waddell";
city[139] = "Wenden";
city[140] = "Wickenburg";
city[141] = "Wilhoit";
city[142] = "Willcox";
city[143] = "Williams";
city[144] = "Winkelman";
city[145] = "Wittmann";
city[146] = "Yarnell";
city[147] = "Young";
city[148] = "Youngtown";
city[149] = "Yuma";
 
function LoadCity() { 
  var ele = document.home_search.city; 
 
  for(var i = 0; i < cityCnt; i++) 
    ele.options[i] = new Option(city[i], city[i]); 
 
  ele.options[0].selected = true; 
} 
 
function LoadElement(ele) { 
  for(var i = 0; i < cityCnt; i++) 
    ele.options[i] = new Option(city[i], city[i]); 
 
  ele.options[0].selected = true; 
} 
 
function SetElement(mycity) { 
  var ele = document.home_search.city; 
 
  for(var i = 0; i < cityCnt; i++) 
    if(ele.options[i].value == mycity)
      ele.options[i].selected = true;
} 
//-->

