function loadMakes(make){
	$.get('/models_manh.php?make='+make, function(data) {
		$('#sel_model').html(data);
	});
}
function loadMakes_copart(make){
	$.get('/copart/j_model.php?selectedMake='+make, function(data) {
		$('#model_copart').html(data);
        $('#model_coparts').html(data);
	});
}
function loadMakes_carscom(make){
	$.get('/carscom/json_models.php?section=used&makeid='+make, function(data) {
		$('#model_carscom').html(data);
	});
}

function loadMakes_iaai(make){
$.post("/iaai/json.php", {
"section": 1,
"make": make
}, function(data){
$('#model_iaai').html(data);});
}

function carscomform(){
                            document.forms["carscomform"].submit();
}
function copart(){
                            document.forms["searchByType"].submit();
}
function manheim(){
                            document.forms["searchForm"].submit();
}
function iaai(){
                            document.forms["iaai"].submit();
}
