var country_states = new Array ("38","135","Yukon Territory","38","122","Alberta","38","123","British Columbia","38","124","Manitoba","38","133","Northwest Territories","38","132","Newfoundland","38","131","Saskatchewan","38","130","Quebec","38","129","Prince Edward Island","38","128","Ontario","38","127","Nova Scotia","38","134","Nunavut","38","125","New Brunswick"); function onStateChange(country, model) { var countryCode = country.options[country.selectedIndex].value; var i, j; j = model.options.length = 0; model.options.selectedIndex = 0; for (i = 0; i < country_states.length / 3; i++) { if (country_states[i*3] == countryCode) { model.options.length = j+1; model.options[j].value = country_states[i*3+1]; model.options[j].text = country_states[i*3+2]; j += 1; } } return; }