function search_getModellList(navId,brandId,modellId) {
	var loopNum=document.getElementById('search_modell').length;
	for (var x=0; x<loopNum; x++) {
		document.getElementById('search_modell').options[0]=null;
	}
	setNewOption('search_modell','alle Modelle',0);
	if (brandId!=0) {
	  var xmlHttp=false;
  	if (typeof XMLHttpRequest!='undefined') {
	    xmlHttp=new XMLHttpRequest();
			if (xmlHttp.overrideMimeType) {
				xmlHttp.overrideMimeType('text/xml');
			}
  	}
  	if (!xmlHttp) {
    	try {
    	  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
  	  }
	    catch(e) {
      	try {
    	    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  	    }
	      catch(e) {
        	xmlHttp=false;
      	}
    	}
  	}
  	if (xmlHttp) {
  	  xmlHttp.open('GET','./xmlHttpRequest/search_getModellList.php?navId='+navId+'&brandId='+brandId,true);
	    xmlHttp.onreadystatechange=function () {
    	  if (xmlHttp.readyState == 4) {
  	    	if (xmlHttp.responseText) {
						var modellList=xmlHttp.responseText.split("\n");
						var navIdModell=0;
						for (var x=0; x<modellList.length; x++) {
							var searchRegExp=/(.*)::(.*)/;
							searchRegExp.exec(modellList[x]);
							setNewOption('search_modell',RegExp.$2,RegExp.$1);
							if (RegExp.$1==modellId) {
								navIdModell=x+1;
							}
						}
						document.getElementById('search_modell').options[navIdModell].selected=true;
    	  	}
  	    }
	    };
    	xmlHttp.send(null);
  	}
	}
}