var xmlHttp = new XMLHttpRequest(); // تعريف الكائن function getInfo() { xmlHttp.open('get','test.php?id='+ document.car.make.selectedIndex); // ارسال الطلب xmlHttp.onreadystatechange = handleInfo; xmlHttp.send(null); // انهاء الطلب } function handleInfo() { if(xmlHttp.readyState == 1) { document.getElementById('main').innerHTML = 'loading ..'; } else if(xmlHttp.readyState == 4) { var response = xmlHttp.responseText; // رد الخادم document.getElementById('main').innerHTML = response; // طباعة القائمة } }