function refreshCityList(){
	//alert("dgldgkl;dskdfldkf");
	atm.getCitys(populateCityList);
}
function populateCityList(list){
	if(typeof window['DWRUtil'] == 'undefined')
		window.DWRUtil = dwr.util;
	DWRUtil.removeAllOptions("city");
	DWRUtil.addOptions("city",list);
	refreshDisList();
}
function refreshDisList(){
	//alert("qqqqqqqqqqqqqq");
	var city = $("city").value;
	atm.getDiss(city, populateDisList);
}
function populateDisList(list){
	if(typeof window['DWRUtil'] == 'undefined')
		window.DWRUtil = dwr.util;
	DWRUtil.removeAllOptions("dis");
	DWRUtil.addOptions("dis",list);
}