function doLocation(state){

locations = new Array("AL","AZ","CA","FL","GA","IL","KS","LA","MS","NY","UT");

loclength = locations.length;

for (i=0;i<loclength;i++)
{
el = document.getElementById(locations[i]);
el.style.display = "none";
el = document.getElementById(state);
el.style.display = "block";
}

}