/* w tym pliku jedyne co mozesz zmienic to jesli zmienisz nazwe strony z index.php np na search.php
	to musisz zmienic winodows.location.href = search.php? i np.costam dalej
*/
function createSelectModels(val){
if(val != 0){
	window.location.href = "index.php?make=" + val;
}else{
	window.location.href = "index.php";
}
}

function selectModel(val){
	makeVal = document.getElementById("makes").value;

	if(val != 0){	
		window.location.href = "index.php?make=" + makeVal + "&model=" + val;
	}else{
		window.location.href = "index.php?make=" + makeVal;
	}
}


function createSelectSilniki(val){
if(val != 0){
	window.location.href = "index.php?make=" + val + "&model=" + val ;
}else{
	window.location.href = "index.php";
}
}

function selecttyp(val){



makeVal = document.getElementById("makes").value ;
modelVal = document.getElementById("models").value ;

	
	if(val != 0){	
		window.location.href = "index.php?make=" + makeVal + "&model=" + modelVal + "&typ=" + val;
	}else{
		window.location.href = "index.php?make=" + makeVal;
	}

}

