function reload1(form)
{
var val=form.make.options[form.make.options.selectedIndex].value;
self.location='index.php?make=' + val ;
}
function reload2(form)
{
var val=form.make.options[form.make.options.selectedIndex].value;
var val2=form.model.options[form.model.options.selectedIndex].value;
self.location='index.php?make=' + val + '&model=' + val2 ;
}
function reload3(form)
{
var val=form.make.options[form.make.options.selectedIndex].value;
var val2=form.model.options[form.model.options.selectedIndex].value;
var val3=form.year.options[form.year.options.selectedIndex].value;
self.location='index.php?make=' + val + '&model=' + val2 + '&year=' + val3 ;
}
function reload4(form)
{
var val=form.make.options[form.make.options.selectedIndex].value;
var val2=form.model.options[form.model.options.selectedIndex].value;
var val3=form.year.options[form.year.options.selectedIndex].value;
var val4=form.system.options[form.system.options.selectedIndex].value;
self.location='index.php?make=' + val + '&model=' + val2 + '&year=' + val3 + '&system=' + val4 ;
}
function reload5(form)
{
var val=form.make.options[form.make.options.selectedIndex].value;
var val2=form.model.options[form.model.options.selectedIndex].value;
var val3=form.year.options[form.year.options.selectedIndex].value;
var val4=form.system.options[form.system.options.selectedIndex].value;
var val5=form.axle.options[form.axle.options.selectedIndex].value;
self.location='index.php?make=' + val + '&model=' + val2 + '&year=' + val3 + '&system=' + val4 + '&axle=' + val5 ;
}
function reload6(form)
{
var val=form.make.options[form.make.options.selectedIndex].value;
var val2=form.model.options[form.model.options.selectedIndex].value;
var val3=form.year.options[form.year.options.selectedIndex].value;
var val4=form.system.options[form.system.options.selectedIndex].value;
var val5=form.axle.options[form.axle.options.selectedIndex].value;
var val6=form.rotor.options[form.rotor.options.selectedIndex].value;
self.location='index.php?make=' + val + '&model=' + val2 + '&year=' + val3 + '&system=' + val4 + '&axle=' + val5 + '&rotor=' + val6  ;
}