function telepulesek (sor) {
	if (window.XMLHttpRequest)
	{
		ajaxkeres = new XMLHttpRequest();
	}
	else if (window.ActiveXObject)
	{
		ajaxkeres = new ActiveXObject("Msxml2.XMLHTTP");
	}
	
	ajaxkeres.open("GET", "telepules_ajax.php?megye_id=" + document.getElementById("megye_id" + sor).value + "&sorsz=" + sor + "&telepules_id=", false);
	ajaxkeres.send(null);
	
	document.getElementById("telepules" + sor).innerHTML = ajaxkeres.responseText;
	
}
