function FillData(country) {
if (country.value != "-1") {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
ClearCity();
FillCity(xhr.responseText);
}
}
xhr.open("GET", "Handler1.ashx?country=" + country, true);
xhr.send();
}
}