
function GoUpdateCarMakes(brand_id,selectid,old_make_id){
if(brand_id<=0){
upd_sel=document.getElementById(selectid);
upd_sel.options.length = 0;
upd_sel.options[0]=new Option('Не вибрано','-1');
return;
}
upd_sel=document.getElementById(selectid);
upd_sel.options.length = 0;
upd_sel.options[0]=new Option('Завантаження...','-1');

upd_sel.disabled=true;
xajax_UpdateCarMakes( brand_id,selectid,old_make_id);

}

function GoUpdateCarMakesByID(brand_field_id,selectid,old_make_id){
//alert('d');
brand_id=document.getElementById(brand_field_id).value;
if(brand_id<=0){
upd_sel=document.getElementById(selectid);
upd_sel.options.length = 0;
upd_sel.options[0]=new Option('Не вибрано','-1');
return;
}
upd_sel=document.getElementById(selectid);
upd_sel.options.length = 0;
upd_sel.options[0]=new Option('Завантаження...','-1');

upd_sel.disabled=true;
xajax_UpdateCarMakes( brand_id,selectid,old_make_id);

}
function SelectRegionFilter(url){
reg_id=document.getElementById('filter_region').value;
location.href=url+reg_id+'/';
}
