
//funkcja pobierajaca modele do podanej marki
function getCarModels(makeid,node_id,sel_name,class_name){
 plik = "http://"+location.host+"/scripts/common/get_car_models.php?q="+makeid;
 el = document.getElementById(node_id);
 xml = null;
 //el.innerHTML = "";
 try{ 
   xml = new ActiveXObject("Microsoft.XMLHTTP"); // IE
 }catch(e){
  try {
   xml = new XMLHttpRequest(); // Mozilla/FireFox/Opera
  }catch(e){
   xml = null;
  }
 }
 if(xml != null){
  xml.onreadystatechange = function(){
   if(xml.readyState==4){
	  dis="";
		if(!xml.responseText.length) dis = "disabled=\"1\"";
    el.innerHTML = "<select name=\""+sel_name+"\" "+dis+" class=\""+class_name+"\"><option value=\"-1\">wybierz</option>"+xml.responseText+"</select>";
   }
  }
  xml.open("GET", plik, true);
  xml.send(null);
 }
 return false;
}


