var myAjax = ajax();
function ajax() {
        var ajax = null;
        if (window.XMLHttpRequest) {
                try {
                        ajax = new XMLHttpRequest();
                }
                catch(e) {}
        }
        else if (window.ActiveXObject) {
                try {
                        ajax = new ActiveXObject("Msxm12.XMLHTTP");
                }
                catch (e){
                        try{
                                ajax = new ActiveXObject("Microsoft.XMLHTTP");
                        }
                        catch (e) {}
                }
        }
        return ajax;
}
function request(str) {
	//Don't forget to modify the path according to your theme
        myAjax.open("POST", "gettags.php");
        myAjax.onreadystatechange = result;
        myAjax.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
		//alert(str);
        myAjax.send("search="+str);
}
function result() {
        if (myAjax.readyState == 4) {
                var liste = myAjax.responseText;
                var cible = document.getElementById('tag_update').innerHTML = liste;
                document.getElementById('tag_update').style.display = "block";
        }
}
function selected(choice,d1,d2,d3,d4,d5,d6,d7,d8,d9){
        var cible = document.getElementById('txtLocation_id_work');
        cible.value = choice;
		var txtaddress_edu_ = document.getElementById('txtaddress_edu');
		txtaddress_edu_.value=d1;
		var txtstreet_cu_ = document.getElementById('txtstreet_education');
		txtstreet_cu_.value=d2;   //d2;
		var txttoombon_ = document.getElementById('txttoombon');
		txttoombon_.value=d3;
		var txtarmper_ = document.getElementById('txtarmper');
		txtarmper_.value=d4;
		var txtCity_ = document.getElementById('txtCity');
		txtCity_.value=d5;
		var txtCode_city_ = document.getElementById('txtCode_city');
		txtCode_city_.value=d6;
		var txttel_ = document.getElementById('txttel');
		txttel_.value=d7;
		var txtfax_cu_ = document.getElementById('txtfax_cu');
		txtfax_cu_.value=d8;
		var txtId_school_ = document.getElementById('txtId_school');
		txtId_school_.value=d9;
//		var txtLocation_id_work_ = document.getElementById('txtLocation_id_work');
//		var txtLocation_id_work_ = document.getElementById('txtLocation_id_work');
//		var txtLocation_id_work_ = document.getElementById('txtLocation_id_work');
//		var txtLocation_id_work_ = document.getElementById('txtLocation_id_work');
        document.getElementById('tag_update').style.display = "none";
}

