// js for populating the states dropdown var states = new Array(); states[5] = new Array('Agoura Hills','Calabasas','Camarillo','Cambria','Carpinteria','Costa Mesa','Duarte','Encino','Lompoc','Los Osos','Morro Bay','Newbury Park','Northridge','Ojai','Placerville','San Luis Obispo','Santa Barbara','Santa Maria','Santa Paula','Santa Ynez','Thousand Oaks','Ventura','Visalia'); states[10] = new Array('Miami'); states[11] = new Array('Hampton'); states[13] = new Array('Lewiston'); states[25] = new Array('Meridian'); states[32] = new Array('Santa Fe'); states[38] = new Array('Newberg'); states[50] = new Array('Charleston'); function showCities(in_state) { cities = document.forms['locator_by_state'].f_city; cities.options.length = 0; var c = 0; cities.options[c++] = new Option('All Cities','', true); // handle error situations if (in_state == '') return; if (!states[in_state]) return; for(var i=0;i < states[in_state].length;i++) { cities.options[c++] = new Option(states[in_state][i],states[in_state][i],false); } }