
    function fillOptions(cid){
         $("#Years").load("makes.php?a="+ cid);
     }
     
     function FillModels(cid){
         $("#Models").load("displaymodels.php?a="+cid);
     }
     function gotolink(ids){
        var a = ids.options[ids.selectedIndex].value;
        if(a != ""){ 
          location.href= "search.php?type=factory&brand=" + $("#brand").val() + "&year=" + $("#MakeList").val().split("*")[0] + "&model=" + $("#Model").val() ;}
     }

    function redirectProduct(id){ 
        var a = id.options[id.selectedIndex].value;
        location.href = 'index.php?productID=' + a;
    }