function country_id()
{
    box = document.getElementById('Countaries');
    url = box.options[box.selectedIndex].value;
    if (url) return url;
}
var http = createRequestObject();
function createRequestObject(){
    var req;
    try { 
        req = new ActiveXObject("MSXML2.XMLHTTP"); 
         } catch (exception1) { 
         try { 
           req = new ActiveXObject("Microsoft.XMLHTTP"); 
         } catch (exception2) { 
           req = false; 
       } 
     } 

     if (!req && window.XMLHttpRequest) { 
       req = new XMLHttpRequest(); 
     } 
    return req;
}
function ShowCities(){ 
    http.onreadystatechange = handleInfo;
    http.open('get', '../Fm_PhpS/towns.php?CountaryID=' + country_id() + '&nocache=' + Math.random ( ));
    http.send(null);
}
function handleInfo(){
    if(http.readyState == 4){
        var response = http.responseText;
        document.getElementById('townsList').innerHTML = response;
    }
}

function loadingCue(){
     document.getElementById('townsList').innerHTML = "<img src='../images/wait.gif' border='0' width='32' height='32' alt='Loading...جاري التحميل'> " + " جار التحميل ...سبحان الله :الحمد لله : لا إله إلا الله : الله اكبر : اللهم صل على محمد"; 
     ShowCities();
}