function reloadCity(t) {
    var fc = document.getElementById("city");
     fc.innerHTML = '';
    var opt, i;
     for (i = 0; i < cities[t].length; i++) {
        opt = document.createElement("OPTION");
        opt.innerHTML = cities[t][i];
        opt.value = i;
        fc.appendChild(opt);
    }

}
