function fillSelect(city)
{
document.write('<select name="city">');
for (var n = 0; n <= (city.length-1); n++){document.write("<option>"+city[n]+"</option>");} 
document.write("</select>");
}
