var update_search_form_fields_id = '0';
var update_search_form_fields_update = true;
var update_search_form_fields_update2 = true;
var t_id = '0';



function update_search_form_fields_cb(result) {


//alert(update_search_form_fields_type);
   document.getElementById('p_'+update_search_form_fields_type).innerHTML = result;

   if(update_search_form_fields_update2==true && update_search_form_fields_type == 'year')
   {
      update_search_form_fields(t_id,'power');
      update_search_form_fields_update2 =  false;
   }

   if (update_search_form_fields_update==true) {
      if(update_search_form_fields_type == 'brand')
      {
        update_search_form_fields(t_id,'year');
      }
      update_search_form_fields_update =  false;
   }

   document.getElementById('ajaxloader_filter').style['display'] = 'none';

}
function update_search_form_fields(id,type) {
   document.getElementById('ajaxloader_filter').style['display'] = 'block';
   t_id = id;
   update_search_form_fields_type = type;
   if (type == "brand")
   {
      update_search_form_fields_update = true;
   }
   if (type == "year")
   {
      update_search_form_fields_update2 = true;
   }
   x_update_search_form_fields(id,type,update_search_form_fields_cb);
}
