
function cotocionline(ulkeonline) {
	url='http://www.gabile.com/onlinedetay/getCities_online.asp?c='+escape(ulkeonline);
	//alert(url)
	method="GET";
	var req;
	if (window.XMLHttpRequest) {
		req = new XMLHttpRequest();
	}else if (window.ActiveXObject){
		req = new ActiveXObject("Microsoft.XMLHTTP");
	}
	req.onreadystatechange = function() {
		if (req.readyState == 4) {
			if (req.status < 400) {
				document.getElementById('sehirsec').innerHTML=req.responseText
				//(method=="POST") ? callback(req) : callback(req,data);
			} else {
				//alert("Veriler yüklenirken bir hata meydana geldi:\n" + req.status+ "/" + req.statusText+"\n"+url);
				
				//cotocionline.ge("sehir").options[0] = new Option("Bir hata meydana geldi.");
			}
		}
	};

	if (method=="POST") {
		req.open("POST", url, true);
		req.setRequestHeader('Content-Type','application/x-www-form-urlencoded;UTF-8');
		req.send(data);
	} else {
		req.open("GET", url, true);
		req.setRequestHeader('Content-Type','application/x-www-form-urlencoded;UTF-8');
		req.send(null);
	};
	
	return req;
}
//1.0 - 3