$(document).ready(function fillYear() { 
 // this function is used to fill the Year list on load
addOption(document.drop_list.Year, "2012", "2012", "");
addOption(document.drop_list.Year, "2011", "2011", "");
addOption(document.drop_list.Year, "2010", "2010", "");
addOption(document.drop_list.Year, "2009", "2009", "");
addOption(document.drop_list.Year, "2008", "2008", "");
addOption(document.drop_list.Year, "2007", "2007", "");
addOption(document.drop_list.Year, "2006", "2006", "");
addOption(document.drop_list.Year, "2005", "2005", "");
addOption(document.drop_list.Year, "2004", "2004", "");
addOption(document.drop_list.Year, "2003", "2003", "");
addOption(document.drop_list.Year, "2002", "2002", "");
addOption(document.drop_list.Year, "2001", "2001", "");
addOption(document.drop_list.Year, "2000", "2000", "");
addOption(document.drop_list.Year, "1999", "1999", "");
addOption(document.drop_list.Year, "1998", "1998", "");
addOption(document.drop_list.Year, "1997", "1997", "");
addOption(document.drop_list.Year, "1996", "1996", "");
addOption(document.drop_list.Year, "1995", "1995", "");
addOption(document.drop_list.Year, "1994", "1994", "");
addOption(document.drop_list.Year, "1993", "1993", "");
addOption(document.drop_list.Year, "1992", "1992", "");

    $('#app-search').fillYear;

})

function SelectMake(){
// ON selection of Year this function will work

removeAllOptions(document.drop_list.Make);
addOption(document.drop_list.Make, "", "Make", "");

if(document.drop_list.Year.value == '2012'){
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Toyota", "Toyota");
}

if(document.drop_list.Year.value == '2011'){
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}

if(document.drop_list.Year.value == '2010'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Cadillac", "Cadillac");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Freightliner", "Freightliner");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hummer", "Hummer");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Scion", "Scion");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
addOption(document.drop_list.Make,"Volvo", "Volvo");
}
if(document.drop_list.Year.value == '2009'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Cadillac", "Cadillac");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Freightliner", "Freightliner");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hummer", "Hummer");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lexus", "Lexus");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Scion", "Scion");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
addOption(document.drop_list.Make,"Volvo", "Volvo");
}
if(document.drop_list.Year.value == '2008'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Cadillac", "Cadillac");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Freightliner", "Freightliner");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hummer", "Hummer");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lexus", "Lexus");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Scion", "Scion");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
addOption(document.drop_list.Make,"Volvo", "Volvo");
}
if(document.drop_list.Year.value == '2007'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Cadillac", "Cadillac");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Freightliner", "Freightliner");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hummer", "Hummer");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lexus", "Lexus");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Saab", "Saab");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Scion", "Scion");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
addOption(document.drop_list.Make,"Volvo", "Volvo");
}
if(document.drop_list.Year.value == '2006'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Cadillac", "Cadillac");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Freightliner", "Freightliner");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hummer", "Hummer");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saab", "Saab");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Scion", "Scion");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
addOption(document.drop_list.Make,"Volvo", "Volvo");
}
if(document.drop_list.Year.value == '2005'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Cadillac", "Cadillac");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Freightliner", "Freightliner");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hummer", "Hummer");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saab", "Saab");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Scion", "Scion");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '2004'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Cadillac", "Cadillac");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Daewoo", "Daewoo");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Scion", "Scion");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '2003'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Daewoo", "Daewoo");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lexus", "Lexus");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '2002'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Daewoo", "Daewoo");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lexus", "Lexus");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '2001'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Daewoo", "Daewoo");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lexus", "Lexus");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '2000'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Daewoo", "Daewoo");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Eagle", "Eagle");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Lexus", "Lexus");
addOption(document.drop_list.Make,"Lincoln", "Lincoln");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '1999'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Daewoo", "Daewoo");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Eagle", "Eagle");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '1998'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Eagle", "Eagle");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '1997'){
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Eagle", "Eagle");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
}
if(document.drop_list.Year.value == '1996'){
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Eagle", "Eagle");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '1995'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Eagle", "Eagle");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Infiniti", "Infiniti");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Kia", "Kia");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '1994'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Eagle", "Eagle");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '1993'){
addOption(document.drop_list.Make,"Acura", "Acura");
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Eagle", "Eagle");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
addOption(document.drop_list.Make,"Volkswagen", "Volkswagen");
}
if(document.drop_list.Year.value == '1992'){
addOption(document.drop_list.Make,"Buick", "Buick");
addOption(document.drop_list.Make,"Chevrolet", "Chevrolet");
addOption(document.drop_list.Make,"Chevrolet/GMC Trucks and Vans", "Chevrolet/GMC Trucks and Vans");
addOption(document.drop_list.Make,"Chrysler", "Chrysler");
addOption(document.drop_list.Make,"Dodge", "Dodge");
addOption(document.drop_list.Make,"Eagle", "Eagle");
addOption(document.drop_list.Make,"Ford", "Ford");
addOption(document.drop_list.Make,"Ford Trucks and Vans", "Ford Trucks and Vans");
addOption(document.drop_list.Make,"Geo", "Geo");
addOption(document.drop_list.Make,"Honda", "Honda");
addOption(document.drop_list.Make,"Hyundai", "Hyundai");
addOption(document.drop_list.Make,"Isuzu", "Isuzu");
addOption(document.drop_list.Make,"Jeep", "Jeep");
addOption(document.drop_list.Make,"Mazda", "Mazda");
addOption(document.drop_list.Make,"Mazda Trucks", "Mazda Trucks");
addOption(document.drop_list.Make,"Mercury", "Mercury");
addOption(document.drop_list.Make,"Mitsubishi", "Mitsubishi");
addOption(document.drop_list.Make,"Nissan", "Nissan");
addOption(document.drop_list.Make,"Oldsmobile", "Oldsmobile");
addOption(document.drop_list.Make,"Plymouth", "Plymouth");
addOption(document.drop_list.Make,"Pontiac", "Pontiac");
addOption(document.drop_list.Make,"Saturn", "Saturn");
addOption(document.drop_list.Make,"Subaru", "Subaru");
addOption(document.drop_list.Make,"Suzuki", "Suzuki");
addOption(document.drop_list.Make,"Toyota", "Toyota");
}

}


function SelectModel(){
// ON selection of Make this function will work

removeAllOptions(document.drop_list.Model);
addOption(document.drop_list.Model, "", "Model", "");

/* ***2012 Vehicles*** */

if(document.drop_list.Year.value == '2012' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Cruze", "Cruze");
addOption(document.drop_list.Model,"HHR", "HHR");
}

if(document.drop_list.Year.value == '2012' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
}

if(document.drop_list.Year.value == '2012' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Fiesta", "Fiesta");
addOption(document.drop_list.Model,"Focus", "Focus");
}

if(document.drop_list.Year.value == '2012' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"E-250", "E-250");
addOption(document.drop_list.Model,"E-350", "E-350");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"F-450", "F-450");
}

if(document.drop_list.Year.value == '2012' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Genesis", "Genesis");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Tucson", "Tucson");
}

if(document.drop_list.Year.value == '2012' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Forte", "Forte");
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Soul", "Soul");
}

if(document.drop_list.Year.value == '2012' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"3", "3");
}

if(document.drop_list.Year.value == '2012' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"NV", "NV");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Versa", "Versa");
}

if(document.drop_list.Year.value == '2012' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Matrix", "Matrix");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}


/* ***2011 Vehicles*** */

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Aveo", "Aveo");
addOption(document.drop_list.Model,"Cruze", "Cruze");
addOption(document.drop_list.Model,"HHR", "HHR");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Colorado/Canyon", "Colorado/Canyon");
addOption(document.drop_list.Model,"Envoy", "Envoy");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Trailblazer", "Trailblazer");
addOption(document.drop_list.Model,"Uplander", "Uplander");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Caliber", "Caliber");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Journey", "Journey");
addOption(document.drop_list.Model,"Nitro", "Nitro");
addOption(document.drop_list.Model,"Ram 1500/2500", "Ram 1500/2500");
addOption(document.drop_list.Model,"Ram 3500", "Ram 3500");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Fiesta", "Fiesta");
addOption(document.drop_list.Model,"Focus", "Focus");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"E-150", "E-150");
addOption(document.drop_list.Model,"E-250", "E-250");
addOption(document.drop_list.Model,"E-350", "E-350");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Transit", "Transit");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Elantra Touring", "Elantra Touring");
addOption(document.drop_list.Model,"Genesis", "Genesis");
addOption(document.drop_list.Model,"Tucson", "Tucson");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Compass", "Compass");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Patriot", "Patriot");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Forte", "Forte");
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Rondo", "Rondo");
addOption(document.drop_list.Model,"Sedona", "Sedona");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GX 470", "GX 470");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"2", "2");
addOption(document.drop_list.Model,"3", "3");
addOption(document.drop_list.Model,"MX-5", "MX-5");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Raider", "Raider");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Juke", "Juke");
addOption(document.drop_list.Model,"Leaf", "Leaf");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Versa", "Versa");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"G3", "G3");
addOption(document.drop_list.Model,"Vibe", "Vibe");
addOption(document.drop_list.Model,"Wave", "Wave");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Equator", "Equator");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"Kizashi", "Kizashi");
addOption(document.drop_list.Model,"SX4", "SX4");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"FJ Cruiser", "FJ Cruiser");
addOption(document.drop_list.Model,"Matrix", "Matrix");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"RAV4", "RAV4");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2011' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Eos", "Eos");
addOption(document.drop_list.Model,"Jetta", "Jetta");
}

/* ***2010 Vehicles*** */

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"MDX", "MDX");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"RL", "RL");
addOption(document.drop_list.Model,"TL", "TL");
addOption(document.drop_list.Model,"TSX", "TSX");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Enclave", "Enclave");
addOption(document.drop_list.Model,"LaCrosse", "LaCrosse");
addOption(document.drop_list.Model,"Lucerne", "Lucerne");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Cadillac'){
addOption(document.drop_list.Model,"CTS", "CTS");
addOption(document.drop_list.Model,"DTS", "DTS");
addOption(document.drop_list.Model,"Escalade", "Escalade");
addOption(document.drop_list.Model,"SRX", "SRX");
addOption(document.drop_list.Model,"STS", "STS");
addOption(document.drop_list.Model,"XLR", "XLR");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Aveo", "Aveo");
addOption(document.drop_list.Model,"Camaro", "Camaro");
addOption(document.drop_list.Model,"Cobalt", "Cobalt");
addOption(document.drop_list.Model,"Corvette", "Corvette");
addOption(document.drop_list.Model,"HHR", "HHR");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Malibu", "Malibu");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Acadia", "Acadia");
addOption(document.drop_list.Model,"Avalanche", "Avalanche");
addOption(document.drop_list.Model,"Colorado/Canyon", "Colorado/Canyon");
addOption(document.drop_list.Model,"Envoy", "Envoy");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"HHR", "HHR");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Terrain", "Terrain");
addOption(document.drop_list.Model,"Trailblazer", "Trailblazer");
addOption(document.drop_list.Model,"Traverse", "Traverse");
addOption(document.drop_list.Model,"Uplander", "Uplander");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"300C", "300C");
addOption(document.drop_list.Model,"Aspen", "Aspen");
addOption(document.drop_list.Model,"Pacifica", "Pacifica");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caliber", "Caliber");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Challenger", "Challenger");
addOption(document.drop_list.Model,"Charger", "Charger");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Durango", "Durango");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Journey", "Journey");
addOption(document.drop_list.Model,"Magnum", "Magnum");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Nitro", "Nitro");
addOption(document.drop_list.Model,"Ram 1500/2500", "Ram 1500/2500");
addOption(document.drop_list.Model,"Ram 3500", "Ram 3500");
addOption(document.drop_list.Model,"Sprinter Van", "Sprinter Van");
addOption(document.drop_list.Model,"Viper", "Viper");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Focus", "Focus");
addOption(document.drop_list.Model,"Fusion", "Fusion");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"E-150", "E-150");
addOption(document.drop_list.Model,"E-250", "E-250");
addOption(document.drop_list.Model,"E-350", "E-350");
addOption(document.drop_list.Model,"Edge", "Edge");
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Flex", "Flex");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Transit", "Transit");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Freightliner'){
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Accord Crosstour", "Accord Crosstour");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Element", "Element");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Pilot", "Pilot");
addOption(document.drop_list.Model,"Ridgeline", "Ridgeline");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Hummer'){
addOption(document.drop_list.Model,"H2", "H2");
addOption(document.drop_list.Model,"H3", "H3");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Azera", "Azera");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Elantra Touring", "Elantra Touring");
addOption(document.drop_list.Model,"Entourage", "Entourage");
addOption(document.drop_list.Model,"Genesis", "Genesis");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tucson", "Tucson");
addOption(document.drop_list.Model,"Veracruz", "Veracruz");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"FX 35", "FX 35");
addOption(document.drop_list.Model,"FX 45", "FX 45");
addOption(document.drop_list.Model,"G 35", "G 35");
addOption(document.drop_list.Model,"G 37", "G 37");
addOption(document.drop_list.Model,"M 35", "M 35");
addOption(document.drop_list.Model,"M 45", "M 45");
addOption(document.drop_list.Model,"QX 56", "QX 56");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Commander", "Commander");
addOption(document.drop_list.Model,"Compass", "Compass");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Patriot", "Patriot");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Amanti", "Amanti");
addOption(document.drop_list.Model,"Borrego", "Borrego");
addOption(document.drop_list.Model,"Forte", "Forte");
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Rondo", "Rondo");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sorento", "Sorento");
addOption(document.drop_list.Model,"Soul", "Soul");
addOption(document.drop_list.Model,"Spectra", "Spectra");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GX 470", "GX 470");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"Mark LT", "Mark LT");
addOption(document.drop_list.Model,"MKS", "MKS");
addOption(document.drop_list.Model,"MKX", "MKX");
addOption(document.drop_list.Model,"MKZ", "MKZ");
addOption(document.drop_list.Model,"Navigator", "Navigator");
addOption(document.drop_list.Model,"Town Car", "Town Car");
addOption(document.drop_list.Model,"Zephyr", "Zephyr");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"2", "2");
addOption(document.drop_list.Model,"3", "3");
addOption(document.drop_list.Model,"5", "5");
addOption(document.drop_list.Model,"6", "6");
addOption(document.drop_list.Model,"CX-7", "CX-7");
addOption(document.drop_list.Model,"CX-9", "CX-9");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"MX-5", "MX-5");
addOption(document.drop_list.Model,"RX-8", "RX-8");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mariner", "Mariner");
addOption(document.drop_list.Model,"Milan", "Milan");
addOption(document.drop_list.Model,"Montego", "Montego");
addOption(document.drop_list.Model,"Mountaineer", "Mountaineer");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Endeavor", "Endeavor");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Lancer", "Lancer");
addOption(document.drop_list.Model,"Outlander", "Outlander");
addOption(document.drop_list.Model,"Raider", "Raider");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"350Z", "350Z");
addOption(document.drop_list.Model,"370Z", "370Z");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Cube", "Cube");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Juke", "Juke");
addOption(document.drop_list.Model,"Leaf", "Leaf");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Murano", "Murano");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Rogue", "Rogue");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Versa", "Versa");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"G3", "G3");
addOption(document.drop_list.Model,"G5", "G5");
addOption(document.drop_list.Model,"G6", "G6");
addOption(document.drop_list.Model,"G8", "G8");
addOption(document.drop_list.Model,"Pursuit", "Pursuit");
addOption(document.drop_list.Model,"Solstice", "Solstice");
addOption(document.drop_list.Model,"Torrent", "Torrent");
addOption(document.drop_list.Model,"Vibe", "Vibe");
addOption(document.drop_list.Model,"Wave", "Wave");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"Astra", "Astra");
addOption(document.drop_list.Model,"Aura", "Aura");
addOption(document.drop_list.Model,"Ion", "Ion");
addOption(document.drop_list.Model,"Outlook", "Outlook");
addOption(document.drop_list.Model,"Sky", "Sky");
addOption(document.drop_list.Model,"Vue", "Vue");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Scion'){
addOption(document.drop_list.Model,"tC", "tC");
addOption(document.drop_list.Model,"xB", "xB");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"B9 Tribeca", "B9 Tribeca");
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Tribeca", "Tribeca");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Equator", "Equator");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"Kizashi", "Kizashi");
addOption(document.drop_list.Model,"SX4", "SX4");
addOption(document.drop_list.Model,"Verona", "Verona");
addOption(document.drop_list.Model,"XL-7", "XL-7");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Avalon", "Avalon");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"FJ Cruiser", "FJ Cruiser");
addOption(document.drop_list.Model,"Highlander", "Highlander");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Matrix", "Matrix");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"RAV4", "RAV4");
addOption(document.drop_list.Model,"Sequoia", "Sequoia");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Venza", "Venza");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
addOption(document.drop_list.Model,"Eos", "Eos");
addOption(document.drop_list.Model,"Golf", "Golf");
addOption(document.drop_list.Model,"Jetta", "Jetta");
addOption(document.drop_list.Model,"Passat", "Passat");
addOption(document.drop_list.Model,"Routan", "Routan");
addOption(document.drop_list.Model,"Tiguan", "Tiguan");
addOption(document.drop_list.Model,"Touareg", "Touareg");
}

if(document.drop_list.Year.value == '2010' && document.drop_list.Make.value == 'Volvo'){
addOption(document.drop_list.Model,"C70", "C70");
addOption(document.drop_list.Model,"S40", "S40");
addOption(document.drop_list.Model,"S80", "S80");
addOption(document.drop_list.Model,"V50", "V50");
addOption(document.drop_list.Model,"V70", "V70");
addOption(document.drop_list.Model,"XC70", "XC70");
addOption(document.drop_list.Model,"XC90", "XC90");
}

/* ***2009 Vehicles*** */

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"MDX", "MDX");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"RL", "RL");
addOption(document.drop_list.Model,"RSX", "RSX");
addOption(document.drop_list.Model,"TL", "TL");
addOption(document.drop_list.Model,"TSX", "TSX");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Allure", "Allure");
addOption(document.drop_list.Model,"Enclave", "Enclave");
addOption(document.drop_list.Model,"LaCrosse", "LaCrosse");
addOption(document.drop_list.Model,"Lucerne", "Lucerne");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Cadillac'){
addOption(document.drop_list.Model,"CTS", "CTS");
addOption(document.drop_list.Model,"DTS", "DTS");
addOption(document.drop_list.Model,"Escalade", "Escalade");
addOption(document.drop_list.Model,"SRX", "SRX");
addOption(document.drop_list.Model,"STS", "STS");
addOption(document.drop_list.Model,"XLR", "XLR");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Aveo", "Aveo");
addOption(document.drop_list.Model,"Cobalt", "Cobalt");
addOption(document.drop_list.Model,"Corvette", "Corvette");
addOption(document.drop_list.Model,"HHR", "HHR");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Malibu", "Malibu");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Acadia", "Acadia");
addOption(document.drop_list.Model,"Avalanche", "Avalanche");
addOption(document.drop_list.Model,"Colorado/Canyon", "Colorado/Canyon");
addOption(document.drop_list.Model,"Envoy", "Envoy");
addOption(document.drop_list.Model,"Equinox", "Equinox");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"HHR", "HHR");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Terrain", "Terrain");
addOption(document.drop_list.Model,"Trailblazer", "Trailblazer");
addOption(document.drop_list.Model,"Traverse", "Traverse");
addOption(document.drop_list.Model,"Uplander", "Uplander");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"300C", "300C");
addOption(document.drop_list.Model,"Aspen", "Aspen");
addOption(document.drop_list.Model,"Pacifica", "Pacifica");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caliber", "Caliber");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Challenger", "Challenger");
addOption(document.drop_list.Model,"Charger", "Charger");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Durango", "Durango");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Journey", "Journey");
addOption(document.drop_list.Model,"Magnum", "Magnum");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Nitro", "Nitro");
addOption(document.drop_list.Model,"Ram 1500/2500", "Ram 1500/2500");
addOption(document.drop_list.Model,"Ram 3500", "Ram 3500");
addOption(document.drop_list.Model,"Sprinter Van", "Sprinter Van");
addOption(document.drop_list.Model,"Viper", "Viper");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Focus", "Focus");
addOption(document.drop_list.Model,"Fusion", "Fusion");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"E-150", "E-150");
addOption(document.drop_list.Model,"E-250", "E-250");
addOption(document.drop_list.Model,"E-350", "E-350");
addOption(document.drop_list.Model,"Edge", "Edge");
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Flex", "Flex");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Sport Trac", "Sport Trac");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Freightliner'){
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Accord Crosstour", "Accord Crosstour");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Element", "Element");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Pilot", "Pilot");
addOption(document.drop_list.Model,"Ridgeline", "Ridgeline");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Hummer'){
addOption(document.drop_list.Model,"H2", "H2");
addOption(document.drop_list.Model,"H3", "H3");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Azera", "Azera");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Entourage", "Entourage");
addOption(document.drop_list.Model,"Genesis", "Genesis");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tucson", "Tucson");
addOption(document.drop_list.Model,"Veracruz", "Veracruz");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"FX 35", "FX 35");
addOption(document.drop_list.Model,"FX 45", "FX 45");
addOption(document.drop_list.Model,"G 35", "G 35");
addOption(document.drop_list.Model,"G 37", "G 37");
addOption(document.drop_list.Model,"M 35", "M 35");
addOption(document.drop_list.Model,"M 45", "M 45");
addOption(document.drop_list.Model,"QX 56", "QX 56");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Ascender", "Ascender");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Commander", "Commander");
addOption(document.drop_list.Model,"Compass", "Compass");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Patriot", "Patriot");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Amanti", "Amanti");
addOption(document.drop_list.Model,"Borrego", "Borrego");
addOption(document.drop_list.Model,"Forte", "Forte");
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Rondo", "Rondo");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sorento", "Sorento");
addOption(document.drop_list.Model,"Soul", "Soul");
addOption(document.drop_list.Model,"Spectra", "Spectra");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GX 470", "GX 470");
addOption(document.drop_list.Model,"RX", "RX");
addOption(document.drop_list.Model,"RX 350", "RX 350");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"Mark LT", "Mark LT");
addOption(document.drop_list.Model,"MKS", "MKS");
addOption(document.drop_list.Model,"MKX", "MKX");
addOption(document.drop_list.Model,"MKZ", "MKZ");
addOption(document.drop_list.Model,"Navigator", "Navigator");
addOption(document.drop_list.Model,"Town Car", "Town Car");
addOption(document.drop_list.Model,"Zephyr", "Zephyr");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"3", "3");
addOption(document.drop_list.Model,"5", "5");
addOption(document.drop_list.Model,"6", "6");
addOption(document.drop_list.Model,"CX-7", "CX-7");
addOption(document.drop_list.Model,"CX-9", "CX-9");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"MX-5", "MX-5");
addOption(document.drop_list.Model,"RX-8", "RX-8");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Truck", "B-series Truck");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mariner", "Mariner");
addOption(document.drop_list.Model,"Milan", "Milan");
addOption(document.drop_list.Model,"Montego", "Montego");
addOption(document.drop_list.Model,"Mountaineer", "Mountaineer");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Endeavor", "Endeavor");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Lancer", "Lancer");
addOption(document.drop_list.Model,"Outlander", "Outlander");
addOption(document.drop_list.Model,"Raider", "Raider");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"350Z", "350Z");
addOption(document.drop_list.Model,"370Z", "370Z");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Cube", "Cube");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Murano", "Murano");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Rogue", "Rogue");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Versa", "Versa");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"G3", "G3");
addOption(document.drop_list.Model,"G5", "G5");
addOption(document.drop_list.Model,"G6", "G6");
addOption(document.drop_list.Model,"G8", "G8");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"Montana SV6", "Montana SV6");
addOption(document.drop_list.Model,"Pursuit", "Pursuit");
addOption(document.drop_list.Model,"Solstice", "Solstice");
addOption(document.drop_list.Model,"Torrent", "Torrent");
addOption(document.drop_list.Model,"Vibe", "Vibe");
addOption(document.drop_list.Model,"Wave", "Wave");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"Astra", "Astra");
addOption(document.drop_list.Model,"Aura", "Aura");
addOption(document.drop_list.Model,"Ion", "Ion");
addOption(document.drop_list.Model,"Outlook", "Outlook");
addOption(document.drop_list.Model,"Sky", "Sky");
addOption(document.drop_list.Model,"Vue", "Vue");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Scion'){
addOption(document.drop_list.Model,"tC", "tC");
addOption(document.drop_list.Model,"xB", "xB");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"B9 Tribeca", "B9 Tribeca");
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Tribeca", "Tribeca");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Equator", "Equator");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"SX4", "SX4");
addOption(document.drop_list.Model,"Verona", "Verona");
addOption(document.drop_list.Model,"XL-7", "XL-7");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Avalon", "Avalon");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"FJ Cruiser", "FJ Cruiser");
addOption(document.drop_list.Model,"Highlander", "Highlander");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Matrix", "Matrix");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"RAV4", "RAV4");
addOption(document.drop_list.Model,"Sequoia", "Sequoia");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Venza", "Venza");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
addOption(document.drop_list.Model,"Eos", "Eos");
addOption(document.drop_list.Model,"Golf", "Golf");
addOption(document.drop_list.Model,"Jetta", "Jetta");
addOption(document.drop_list.Model,"Passat", "Passat");
addOption(document.drop_list.Model,"Routan", "Routan");
addOption(document.drop_list.Model,"Tiguan", "Tiguan");
addOption(document.drop_list.Model,"Touareg", "Touareg");
}

if(document.drop_list.Year.value == '2009' && document.drop_list.Make.value == 'Volvo'){
addOption(document.drop_list.Model,"C70", "C70");
addOption(document.drop_list.Model,"S40", "S40");
addOption(document.drop_list.Model,"S80", "S80");
addOption(document.drop_list.Model,"V50", "V50");
addOption(document.drop_list.Model,"V70", "V70");
addOption(document.drop_list.Model,"XC70", "XC70");
addOption(document.drop_list.Model,"XC90", "XC90");
}

/* ***2008 Vehicles*** */

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"MDX", "MDX");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"RL", "RL");
addOption(document.drop_list.Model,"RSX", "RSX");
addOption(document.drop_list.Model,"TL", "TL");
addOption(document.drop_list.Model,"TSX", "TSX");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Allure", "Allure");
addOption(document.drop_list.Model,"Enclave", "Enclave");
addOption(document.drop_list.Model,"LaCrosse", "LaCrosse");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Lucerne", "Lucerne");
addOption(document.drop_list.Model,"Rainier", "Rainier");
addOption(document.drop_list.Model,"Rendezvous", "Rendezvous");
addOption(document.drop_list.Model,"Terraza", "Terraza");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Cadillac'){
addOption(document.drop_list.Model,"CTS", "CTS");
addOption(document.drop_list.Model,"DTS", "DTS");
addOption(document.drop_list.Model,"Escalade", "Escalade");
addOption(document.drop_list.Model,"SRX", "SRX");
addOption(document.drop_list.Model,"STS", "STS");
addOption(document.drop_list.Model,"XLR", "XLR");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Aveo", "Aveo");
addOption(document.drop_list.Model,"Cobalt", "Cobalt");
addOption(document.drop_list.Model,"Corvette", "Corvette");
addOption(document.drop_list.Model,"HHR", "HHR");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Acadia", "Acadia");
addOption(document.drop_list.Model,"Avalanche", "Avalanche");
addOption(document.drop_list.Model,"Colorado/Canyon", "Colorado/Canyon");
addOption(document.drop_list.Model,"Envoy", "Envoy");
addOption(document.drop_list.Model,"Equinox", "Equinox");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"HHR", "HHR");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Trailblazer", "Trailblazer");
addOption(document.drop_list.Model,"Traverse", "Traverse");
addOption(document.drop_list.Model,"Uplander", "Uplander");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"300C", "300C");
addOption(document.drop_list.Model,"Aspen", "Aspen");
addOption(document.drop_list.Model,"Pacifica", "Pacifica");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caliber", "Caliber");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Challenger", "Challenger");
addOption(document.drop_list.Model,"Charger", "Charger");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Durango", "Durango");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Journey", "Journey");
addOption(document.drop_list.Model,"Magnum", "Magnum");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Nitro", "Nitro");
addOption(document.drop_list.Model,"Ram 1500", "Ram 1500");
addOption(document.drop_list.Model,"Ram 2500/3500", "Ram 2500/3500");
addOption(document.drop_list.Model,"Sprinter Van", "Sprinter Van");
addOption(document.drop_list.Model,"Viper", "Viper");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Focus", "Focus");
addOption(document.drop_list.Model,"Fusion", "Fusion");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"E-250", "E-250");
addOption(document.drop_list.Model,"E-350", "E-350");
addOption(document.drop_list.Model,"Edge", "Edge");
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Flex", "Flex");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Sport Trac", "Sport Trac");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Freightliner'){
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Element", "Element");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Pilot", "Pilot");
addOption(document.drop_list.Model,"Ridgeline", "Ridgeline");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Hummer'){
addOption(document.drop_list.Model,"H2", "H2");
addOption(document.drop_list.Model,"H3", "H3");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Azera", "Azera");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Entourage", "Entourage");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
addOption(document.drop_list.Model,"Tucson", "Tucson");
addOption(document.drop_list.Model,"Veracruz", "Veracruz");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"FX 35", "FX 35");
addOption(document.drop_list.Model,"FX 45", "FX 45");
addOption(document.drop_list.Model,"G 35", "G 35");
addOption(document.drop_list.Model,"G 37", "G 37");
addOption(document.drop_list.Model,"M 35", "M 35");
addOption(document.drop_list.Model,"M 45", "M 45");
addOption(document.drop_list.Model,"QX 56", "QX 56");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Ascender", "Ascender");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Commander", "Commander");
addOption(document.drop_list.Model,"Compass", "Compass");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Patriot", "Patriot");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Amanti", "Amanti");
addOption(document.drop_list.Model,"Forte", "Forte");
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Rondo", "Rondo");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sorento", "Sorento");
addOption(document.drop_list.Model,"Spectra", "Spectra");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GX 470", "GX 470");
addOption(document.drop_list.Model,"RX", "RX");
addOption(document.drop_list.Model,"RX 350", "RX 350");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"Aviator", "Aviator");
addOption(document.drop_list.Model,"Mark LT", "Mark LT");
addOption(document.drop_list.Model,"MKS", "MKS");
addOption(document.drop_list.Model,"MKX", "MKX");
addOption(document.drop_list.Model,"MKZ", "MKZ");
addOption(document.drop_list.Model,"Navigator", "Navigator");
addOption(document.drop_list.Model,"Town Car", "Town Car");
addOption(document.drop_list.Model,"Zephyr", "Zephyr");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"3", "3");
addOption(document.drop_list.Model,"5", "5");
addOption(document.drop_list.Model,"6", "6");
addOption(document.drop_list.Model,"CX-7", "CX-7");
addOption(document.drop_list.Model,"CX-9", "CX-9");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"MX-5", "MX-5");
addOption(document.drop_list.Model,"RX-8", "RX-8");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Truck", "B-series Truck");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mariner", "Mariner");
addOption(document.drop_list.Model,"Milan", "Milan");
addOption(document.drop_list.Model,"Montego", "Montego");
addOption(document.drop_list.Model,"Mountaineer", "Mountaineer");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Endeavor", "Endeavor");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Lancer", "Lancer");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
addOption(document.drop_list.Model,"Outlander", "Outlander");
addOption(document.drop_list.Model,"Raider", "Raider");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"350Z", "350Z");
addOption(document.drop_list.Model,"370Z", "370Z");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Cube", "Cube");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Murano", "Murano");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Rogue", "Rogue");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Versa", "Versa");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"G3", "G3");
addOption(document.drop_list.Model,"G5", "G5");
addOption(document.drop_list.Model,"G6", "G6");
addOption(document.drop_list.Model,"G8", "G8");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"Montana SV6", "Montana SV6");
addOption(document.drop_list.Model,"Pursuit", "Pursuit");
addOption(document.drop_list.Model,"Solstice", "Solstice");
addOption(document.drop_list.Model,"Torrent", "Torrent");
addOption(document.drop_list.Model,"Vibe", "Vibe");
addOption(document.drop_list.Model,"Wave", "Wave");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"Astra", "Astra");
addOption(document.drop_list.Model,"Aura", "Aura");
addOption(document.drop_list.Model,"Ion", "Ion");
addOption(document.drop_list.Model,"Outlook", "Outlook");
addOption(document.drop_list.Model,"Sky", "Sky");
addOption(document.drop_list.Model,"Vue", "Vue");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Scion'){
addOption(document.drop_list.Model,"tC", "tC");
addOption(document.drop_list.Model,"xB", "xB");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"B9 Tribeca", "B9 Tribeca");
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Tribeca", "Tribeca");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Forenza", "Forenza");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"Reno", "Reno");
addOption(document.drop_list.Model,"SX4", "SX4");
addOption(document.drop_list.Model,"Verona", "Verona");
addOption(document.drop_list.Model,"XL-7", "XL-7");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Avalon", "Avalon");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"FJ Cruiser", "FJ Cruiser");
addOption(document.drop_list.Model,"Highlander", "Highlander");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Matrix", "Matrix");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"RAV4", "RAV4");
addOption(document.drop_list.Model,"Sequoia", "Sequoia");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
addOption(document.drop_list.Model,"Jetta", "Jetta");
addOption(document.drop_list.Model,"Passat", "Passat");
addOption(document.drop_list.Model,"Routan", "Routan");
addOption(document.drop_list.Model,"Tiguan", "Tiguan");
addOption(document.drop_list.Model,"Touareg", "Touareg");
}

if(document.drop_list.Year.value == '2008' && document.drop_list.Make.value == 'Volvo'){
addOption(document.drop_list.Model,"C70", "C70");
addOption(document.drop_list.Model,"S40", "S40");
addOption(document.drop_list.Model,"S60", "S60");
addOption(document.drop_list.Model,"S70", "S70");
addOption(document.drop_list.Model,"S80", "S80");
addOption(document.drop_list.Model,"V50", "V50");
addOption(document.drop_list.Model,"V70", "V70");
addOption(document.drop_list.Model,"XC70", "XC70");
addOption(document.drop_list.Model,"XC90", "XC90");
}

/* ***2007 Vehicles*** */

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
addOption(document.drop_list.Model,"MDX", "MDX");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"RL", "RL");
addOption(document.drop_list.Model,"RSX", "RSX");
addOption(document.drop_list.Model,"TL", "TL");
addOption(document.drop_list.Model,"TSX", "TSX");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Allure", "Allure");
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"Enclave", "Enclave");
addOption(document.drop_list.Model,"LaCrosse", "LaCrosse");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Lucerne", "Lucerne");
addOption(document.drop_list.Model,"Rainier", "Rainier");
addOption(document.drop_list.Model,"Rendezvous", "Rendezvous");
addOption(document.drop_list.Model,"Skylark", "Skylark");
addOption(document.drop_list.Model,"Terraza", "Terraza");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Cadillac'){
addOption(document.drop_list.Model,"CTS", "CTS");
addOption(document.drop_list.Model,"DeVille", "DeVille");
addOption(document.drop_list.Model,"DTS", "DTS");
addOption(document.drop_list.Model,"Escalade", "Escalade");
addOption(document.drop_list.Model,"SRX", "SRX");
addOption(document.drop_list.Model,"STS", "STS");
addOption(document.drop_list.Model,"XLR", "XLR");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Aveo", "Aveo");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Cobalt", "Cobalt");
addOption(document.drop_list.Model,"Corvette", "Corvette");
addOption(document.drop_list.Model,"HHR", "HHR");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Lumina", "Lumina");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Acadia", "Acadia");
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Avalanche", "Avalanche");
addOption(document.drop_list.Model,"Colorado/Canyon", "Colorado/Canyon");
addOption(document.drop_list.Model,"Envoy", "Envoy");
addOption(document.drop_list.Model,"Equinox", "Equinox");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"HHR", "HHR");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"SSR", "SSR");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Trailblazer", "Trailblazer");
addOption(document.drop_list.Model,"Uplander", "Uplander");
addOption(document.drop_list.Model,"Venture", "Venture");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"300C", "300C");
addOption(document.drop_list.Model,"Aspen", "Aspen");
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"Pacifica", "Pacifica");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caliber", "Caliber");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Charger", "Charger");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Durango", "Durango");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Magnum", "Magnum");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Nitro", "Nitro");
addOption(document.drop_list.Model,"Ram 1500", "Ram 1500");
addOption(document.drop_list.Model,"Ram 2500/3500", "Ram 2500/3500");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Sprinter Van", "Sprinter Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
addOption(document.drop_list.Model,"Viper", "Viper");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Five Hundred", "Five Hundred");
addOption(document.drop_list.Model,"Focus", "Focus");
addOption(document.drop_list.Model,"Freestyle", "Freestyle");
addOption(document.drop_list.Model,"Fusion", "Fusion");
addOption(document.drop_list.Model,"GT", "GT");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Club Wagon", "Club Wagon");
addOption(document.drop_list.Model,"Edge", "Edge");
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Freestar", "Freestar");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Sport Trac", "Sport Trac");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Freightliner'){
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Element", "Element");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Pilot", "Pilot");
addOption(document.drop_list.Model,"Ridgeline", "Ridgeline");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Hummer'){
addOption(document.drop_list.Model,"H2", "H2");
addOption(document.drop_list.Model,"H3", "H3");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Azera", "Azera");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Entourage", "Entourage");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
addOption(document.drop_list.Model,"Tucson", "Tucson");
addOption(document.drop_list.Model,"Veracruz", "Veracruz");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"FX 35", "FX 35");
addOption(document.drop_list.Model,"FX 45", "FX 45");
addOption(document.drop_list.Model,"G 35", "G 35");
addOption(document.drop_list.Model,"M 35", "M 35");
addOption(document.drop_list.Model,"M 45", "M 45");
addOption(document.drop_list.Model,"QX 56", "QX 56");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Ascender", "Ascender");
addOption(document.drop_list.Model,"Axiom", "Axiom");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Commander", "Commander");
addOption(document.drop_list.Model,"Compass", "Compass");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Patriot", "Patriot");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Amanti", "Amanti");
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Rondo", "Rondo");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sorento", "Sorento");
addOption(document.drop_list.Model,"Spectra", "Spectra");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GX 470", "GX 470");
addOption(document.drop_list.Model,"RX", "RX");
addOption(document.drop_list.Model,"RX 350", "RX 350");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"Aviator", "Aviator");
addOption(document.drop_list.Model,"LS", "LS");
addOption(document.drop_list.Model,"Mark LT", "Mark LT");
addOption(document.drop_list.Model,"MKX", "MKX");
addOption(document.drop_list.Model,"MKZ", "MKZ");
addOption(document.drop_list.Model,"Navigator", "Navigator");
addOption(document.drop_list.Model,"Town Car", "Town Car");
addOption(document.drop_list.Model,"Zephyr", "Zephyr");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"3", "3");
addOption(document.drop_list.Model,"5", "5");
addOption(document.drop_list.Model,"6", "6");
addOption(document.drop_list.Model,"CX-7", "CX-7");
addOption(document.drop_list.Model,"CX-9", "CX-9");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"MPV Wagon", "MPV Wagon");
addOption(document.drop_list.Model,"MX-5", "MX-5");
addOption(document.drop_list.Model,"RX-8", "RX-8");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Truck", "B-series Truck");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mariner", "Mariner");
addOption(document.drop_list.Model,"Milan", "Milan");
addOption(document.drop_list.Model,"Montego", "Montego");
addOption(document.drop_list.Model,"Monterey", "Monterey");
addOption(document.drop_list.Model,"Mountaineer", "Mountaineer");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Endeavor", "Endeavor");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Lancer", "Lancer");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
addOption(document.drop_list.Model,"Raider", "Raider");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"350Z", "350Z");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Cube", "Cube");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Murano", "Murano");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Rogue", "Rogue");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Versa", "Versa");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Breeze", "Breeze");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Aztek", "Aztek");
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"G5", "G5");
addOption(document.drop_list.Model,"G6", "G6");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"Montana SV6", "Montana SV6");
addOption(document.drop_list.Model,"Pursuit", "Pursuit");
addOption(document.drop_list.Model,"Solstice", "Solstice");
addOption(document.drop_list.Model,"Torrent", "Torrent");
addOption(document.drop_list.Model,"Vibe", "Vibe");
addOption(document.drop_list.Model,"Wave", "Wave");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"9.7X", "9.7X");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"Aura", "Aura");
addOption(document.drop_list.Model,"Ion", "Ion");
addOption(document.drop_list.Model,"Outlook", "Outlook");
addOption(document.drop_list.Model,"Sky", "Sky");
addOption(document.drop_list.Model,"Vue", "Vue");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Scion'){
addOption(document.drop_list.Model,"tC", "tC");
addOption(document.drop_list.Model,"xB", "xB");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"B9 Tribeca", "B9 Tribeca");
addOption(document.drop_list.Model,"Baja", "Baja");
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Tribeca", "Tribeca");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Aerio", "Aerio");
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Forenza", "Forenza");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"Reno", "Reno");
addOption(document.drop_list.Model,"SX4", "SX4");
addOption(document.drop_list.Model,"Verona", "Verona");
addOption(document.drop_list.Model,"XL-7", "XL-7");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Avalon", "Avalon");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Echo", "Echo");
addOption(document.drop_list.Model,"FJ Cruiser", "FJ Cruiser");
addOption(document.drop_list.Model,"Highlander", "Highlander");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Matrix", "Matrix");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"RAV4", "RAV4");
addOption(document.drop_list.Model,"Sequoia", "Sequoia");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
addOption(document.drop_list.Model,"Jetta", "Jetta");
addOption(document.drop_list.Model,"Passat", "Passat");
addOption(document.drop_list.Model,"Touareg", "Touareg");
}

if(document.drop_list.Year.value == '2007' && document.drop_list.Make.value == 'Volvo'){
addOption(document.drop_list.Model,"S40", "S40");
addOption(document.drop_list.Model,"S60", "S60");
addOption(document.drop_list.Model,"S70", "S70");
addOption(document.drop_list.Model,"S80", "S80");
addOption(document.drop_list.Model,"V70", "V70");
addOption(document.drop_list.Model,"XC90", "XC90");
}

/* ***2006 Vehicles*** */

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
addOption(document.drop_list.Model,"MDX", "MDX");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"RL", "RL");
addOption(document.drop_list.Model,"RSX", "RSX");
addOption(document.drop_list.Model,"TL", "TL");
addOption(document.drop_list.Model,"TSX", "TSX");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Allure", "Allure");
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LaCrosse", "LaCrosse");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Lucerne", "Lucerne");
addOption(document.drop_list.Model,"Rainier", "Rainier");
addOption(document.drop_list.Model,"Rendezvous", "Rendezvous");
addOption(document.drop_list.Model,"Terraza", "Terraza");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Cadillac'){
addOption(document.drop_list.Model,"CTS", "CTS");
addOption(document.drop_list.Model,"DeVille", "DeVille");
addOption(document.drop_list.Model,"DTS", "DTS");
addOption(document.drop_list.Model,"Escalade", "Escalade");
addOption(document.drop_list.Model,"SRX", "SRX");
addOption(document.drop_list.Model,"STS", "STS");
addOption(document.drop_list.Model,"XLR", "XLR");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Aveo", "Aveo");
addOption(document.drop_list.Model,"Cobalt", "Cobalt");
addOption(document.drop_list.Model,"Corvette", "Corvette");
addOption(document.drop_list.Model,"HHR", "HHR");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Avalanche", "Avalanche");
addOption(document.drop_list.Model,"Colorado/Canyon", "Colorado/Canyon");
addOption(document.drop_list.Model,"Envoy", "Envoy");
addOption(document.drop_list.Model,"Equinox", "Equinox");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"HHR", "HHR");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"SSR", "SSR");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Uplander", "Uplander");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"300C", "300C");
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"Pacifica", "Pacifica");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caliber", "Caliber");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Charger", "Charger");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Durango", "Durango");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Magnum", "Magnum");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Sprinter Van", "Sprinter Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
addOption(document.drop_list.Model,"Viper", "Viper");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Five Hundred", "Five Hundred");
addOption(document.drop_list.Model,"Focus", "Focus");
addOption(document.drop_list.Model,"Freestyle", "Freestyle");
addOption(document.drop_list.Model,"Fusion", "Fusion");
addOption(document.drop_list.Model,"GT", "GT");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Club Wagon", "Club Wagon");
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Freestar", "Freestar");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Sport Trac", "Sport Trac");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Freightliner'){
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Tracker", "Tracker");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Element", "Element");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Pilot", "Pilot");
addOption(document.drop_list.Model,"Ridgeline", "Ridgeline");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Hummer'){
addOption(document.drop_list.Model,"H2", "H2");
addOption(document.drop_list.Model,"H3", "H3");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Azera", "Azera");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
addOption(document.drop_list.Model,"Tucson", "Tucson");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"FX 35", "FX 35");
addOption(document.drop_list.Model,"FX 45", "FX 45");
addOption(document.drop_list.Model,"G 35", "G 35");
addOption(document.drop_list.Model,"M 35", "M 35");
addOption(document.drop_list.Model,"M 45", "M 45");
addOption(document.drop_list.Model,"QX 56", "QX 56");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Ascender", "Ascender");
addOption(document.drop_list.Model,"Axiom", "Axiom");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Commander", "Commander");
addOption(document.drop_list.Model,"Compass", "Compass");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Patriot", "Patriot");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Amanti", "Amanti");
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Rondo", "Rondo");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sorento", "Sorento");
addOption(document.drop_list.Model,"Spectra", "Spectra");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GX 470", "GX 470");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"LS", "LS");
addOption(document.drop_list.Model,"Mark LT", "Mark LT");
addOption(document.drop_list.Model,"MKX", "MKX");
addOption(document.drop_list.Model,"Navigator", "Navigator");
addOption(document.drop_list.Model,"Town Car", "Town Car");
addOption(document.drop_list.Model,"Zephyr", "Zephyr");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"3", "3");
addOption(document.drop_list.Model,"5", "5");
addOption(document.drop_list.Model,"6", "6");
addOption(document.drop_list.Model,"CX-7", "CX-7");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"MPV Wagon", "MPV Wagon");
addOption(document.drop_list.Model,"MX-5", "MX-5");
addOption(document.drop_list.Model,"RX-8", "RX-8");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Truck", "B-series Truck");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mariner", "Mariner");
addOption(document.drop_list.Model,"Milan", "Milan");
addOption(document.drop_list.Model,"Montego", "Montego");
addOption(document.drop_list.Model,"Monterey", "Monterey");
addOption(document.drop_list.Model,"Mountaineer", "Mountaineer");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Endeavor", "Endeavor");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Lancer", "Lancer");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
addOption(document.drop_list.Model,"Raider", "Raider");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"350Z", "350Z");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Murano", "Murano");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Breeze", "Breeze");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"G6", "G6");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"Montana SV6", "Montana SV6");
addOption(document.drop_list.Model,"Pursuit", "Pursuit");
addOption(document.drop_list.Model,"Solstice", "Solstice");
addOption(document.drop_list.Model,"Torrent", "Torrent");
addOption(document.drop_list.Model,"Vibe", "Vibe");
addOption(document.drop_list.Model,"Wave", "Wave");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"9.7X", "9.7X");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"Aura", "Aura");
addOption(document.drop_list.Model,"Ion", "Ion");
addOption(document.drop_list.Model,"SL1/SL2", "SL1/SL2");
addOption(document.drop_list.Model,"Vue", "Vue");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Scion'){
addOption(document.drop_list.Model,"tC", "tC");
addOption(document.drop_list.Model,"xA", "xA");
addOption(document.drop_list.Model,"xB", "xB");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"B9 Tribeca", "B9 Tribeca");
addOption(document.drop_list.Model,"Baja", "Baja");
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Tribeca", "Tribeca");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Aerio", "Aerio");
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Forenza", "Forenza");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"Reno", "Reno");
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
addOption(document.drop_list.Model,"Verona", "Verona");
addOption(document.drop_list.Model,"Vitara", "Vitara");
addOption(document.drop_list.Model,"XL-7", "XL-7");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Avalon", "Avalon");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Echo", "Echo");
addOption(document.drop_list.Model,"FJ Cruiser", "FJ Cruiser");
addOption(document.drop_list.Model,"Highlander", "Highlander");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Matrix", "Matrix");
addOption(document.drop_list.Model,"MR2 Spyder", "MR2 Spyder");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"RAV4", "RAV4");
addOption(document.drop_list.Model,"Sequoia", "Sequoia");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
addOption(document.drop_list.Model,"Jetta", "Jetta");
addOption(document.drop_list.Model,"Passat", "Passat");
addOption(document.drop_list.Model,"Touareg", "Touareg");
}

if(document.drop_list.Year.value == '2006' && document.drop_list.Make.value == 'Volvo'){
addOption(document.drop_list.Model,"S40", "S40");
addOption(document.drop_list.Model,"S60", "S60");
addOption(document.drop_list.Model,"S70", "S70");
addOption(document.drop_list.Model,"S80", "S80");
addOption(document.drop_list.Model,"V70", "V70");
addOption(document.drop_list.Model,"XC90", "XC90");
}

/* ***2005 Vehicles*** */

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
addOption(document.drop_list.Model,"MDX", "MDX");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"RL", "RL");
addOption(document.drop_list.Model,"RSX", "RSX");
addOption(document.drop_list.Model,"TL", "TL");
addOption(document.drop_list.Model,"TSX", "TSX");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Allure", "Allure");
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LaCrosse", "LaCrosse");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Park Avenue", "Park Avenue");
addOption(document.drop_list.Model,"Rainier", "Rainier");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Cadillac'){
addOption(document.drop_list.Model,"SRX", "SRX");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Aveo", "Aveo");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Cobalt", "Cobalt");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Avalanche", "Avalanche");
addOption(document.drop_list.Model,"Colorado/Canyon", "Colorado/Canyon");
addOption(document.drop_list.Model,"Denali XL", "Denali XL");
addOption(document.drop_list.Model,"Envoy", "Envoy");
addOption(document.drop_list.Model,"Equinox", "Equinox");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"SSR", "SSR");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Uplander", "Uplander");
addOption(document.drop_list.Model,"Venture", "Venture");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"Concord", "Concord");
addOption(document.drop_list.Model,"Pacifica", "Pacifica");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Durango", "Durango");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Magnum", "Magnum");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
addOption(document.drop_list.Model,"Viper", "Viper");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Focus", "Focus");
addOption(document.drop_list.Model,"Freestyle", "Freestyle");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
addOption(document.drop_list.Model,"Thunderbird", "Thunderbird");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Club Wagon", "Club Wagon");
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"Excursion", "Excursion");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Freestar", "Freestar");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Freightliner'){
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Tracker", "Tracker");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Element", "Element");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Pilot", "Pilot");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Hummer'){
addOption(document.drop_list.Model,"H2", "H2");
addOption(document.drop_list.Model,"H3", "H3");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
addOption(document.drop_list.Model,"Tucson", "Tucson");
addOption(document.drop_list.Model,"XG", "XG");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"FX 35", "FX 35");
addOption(document.drop_list.Model,"FX 45", "FX 45");
addOption(document.drop_list.Model,"G 35", "G 35");
addOption(document.drop_list.Model,"I 35", "I 35");
addOption(document.drop_list.Model,"M 35", "M 35");
addOption(document.drop_list.Model,"M 45", "M 45");
addOption(document.drop_list.Model,"QX 56", "QX 56");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Ascender", "Ascender");
addOption(document.drop_list.Model,"Axiom", "Axiom");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Commander", "Commander");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Amanti", "Amanti");
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Rondo", "Rondo");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sephia", "Sephia");
addOption(document.drop_list.Model,"Sorento", "Sorento");
addOption(document.drop_list.Model,"Spectra", "Spectra");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"ES 300", "ES 300");
addOption(document.drop_list.Model,"ES 330", "ES 330");
addOption(document.drop_list.Model,"GX 470", "GX 470");
addOption(document.drop_list.Model,"IS 200", "IS 200");
addOption(document.drop_list.Model,"IS 300", "IS 300");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"Aviator", "Aviator");
addOption(document.drop_list.Model,"LS", "LS");
addOption(document.drop_list.Model,"Navigator", "Navigator");
addOption(document.drop_list.Model,"Town Car", "Town Car");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"3", "3");
addOption(document.drop_list.Model,"5", "5");
addOption(document.drop_list.Model,"6", "6");
addOption(document.drop_list.Model,"CX-7", "CX-7");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"Protege", "Protege");
addOption(document.drop_list.Model,"RX-8", "RX-8");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Truck", "B-series Truck");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mariner", "Mariner");
addOption(document.drop_list.Model,"Montego", "Montego");
addOption(document.drop_list.Model,"Monterey", "Monterey");
addOption(document.drop_list.Model,"Mountaineer", "Mountaineer");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Diamante", "Diamante");
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Lancer", "Lancer");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"350Z", "350Z");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Murano", "Murano");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Breeze", "Breeze");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
addOption(document.drop_list.Model,"Vibe", "Vibe");
addOption(document.drop_list.Model,"Wave", "Wave");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"9.7X", "9.7X");
}


if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"Aura", "Aura");
addOption(document.drop_list.Model,"Ion", "Ion");
addOption(document.drop_list.Model,"SL1/SL2", "SL1/SL2");
addOption(document.drop_list.Model,"Vue", "Vue");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Scion'){
addOption(document.drop_list.Model,"tC", "tC");
addOption(document.drop_list.Model,"xA", "xA");
addOption(document.drop_list.Model,"xB", "xB");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Baja", "Baja");
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Aerio", "Aerio");
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Forenza", "Forenza");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"Reno", "Reno");
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
addOption(document.drop_list.Model,"XL-7", "XL-7");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Avalon", "Avalon");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Echo", "Echo");
addOption(document.drop_list.Model,"Highlander", "Highlander");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Matrix", "Matrix");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2005' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
}

/* ***2004 Vehicles*** */

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
addOption(document.drop_list.Model,"MDX", "MDX");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"RSX", "RSX");
addOption(document.drop_list.Model,"TL", "TL");
addOption(document.drop_list.Model,"TSX", "TSX");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Park Avenue", "Park Avenue");
addOption(document.drop_list.Model,"Rainier", "Rainier");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Cadillac'){
addOption(document.drop_list.Model,"SRX", "SRX");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Aveo", "Aveo");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Avalanche", "Avalanche");
addOption(document.drop_list.Model,"Colorado/Canyon", "Colorado/Canyon");
addOption(document.drop_list.Model,"Denali XL", "Denali XL");
addOption(document.drop_list.Model,"Envoy", "Envoy");
addOption(document.drop_list.Model,"Equinox", "Equinox");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"SSR", "SSR");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Uplander", "Uplander");
addOption(document.drop_list.Model,"Venture", "Venture");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"300M", "300M");
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"Concord", "Concord");
addOption(document.drop_list.Model,"Pacifica", "Pacifica");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Daewoo'){
addOption(document.drop_list.Model,"Lanos", "Lanos");
addOption(document.drop_list.Model,"Leganza", "Leganza");
addOption(document.drop_list.Model,"Nubria", "Nubria");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Durango", "Durango");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Magnum", "Magnum");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
addOption(document.drop_list.Model,"Viper", "Viper");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Focus", "Focus");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
addOption(document.drop_list.Model,"Thunderbird", "Thunderbird");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Econoline Van", "Econoline Van");
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"Excursion", "Excursion");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Freestar", "Freestar");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Element", "Element");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Pilot", "Pilot");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Hummer'){
addOption(document.drop_list.Model,"H2", "H2");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
addOption(document.drop_list.Model,"Tucson", "Tucson");
addOption(document.drop_list.Model,"XG", "XG");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"FX 35", "FX 35");
addOption(document.drop_list.Model,"FX 45", "FX 45");
addOption(document.drop_list.Model,"G 35", "G 35");
addOption(document.drop_list.Model,"I 35", "I 35");
addOption(document.drop_list.Model,"M 35", "M 35");
addOption(document.drop_list.Model,"M 45", "M 45");
addOption(document.drop_list.Model,"QX 56", "QX 56");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Ascender", "Ascender");
addOption(document.drop_list.Model,"Axiom", "Axiom");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Amanti", "Amanti");
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sephia", "Sephia");
addOption(document.drop_list.Model,"Sorento", "Sorento");
addOption(document.drop_list.Model,"Spectra", "Spectra");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"ES 300", "ES 300");
addOption(document.drop_list.Model,"ES 330", "ES 330");
addOption(document.drop_list.Model,"ES 430", "ES 430");
addOption(document.drop_list.Model,"GX 470", "GX 470");
addOption(document.drop_list.Model,"IS 200", "IS 200");
addOption(document.drop_list.Model,"IS 300", "IS 300");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"Aviator", "Aviator");
addOption(document.drop_list.Model,"LS", "LS");
addOption(document.drop_list.Model,"Navigator", "Navigator");
addOption(document.drop_list.Model,"Town Car", "Town Car");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"3", "3");
addOption(document.drop_list.Model,"6", "6");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"Protege", "Protege");
addOption(document.drop_list.Model,"RX-8", "RX-8");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Truck", "B-series Truck");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Monterey", "Monterey");
addOption(document.drop_list.Model,"Mountaineer", "Mountaineer");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Diamante", "Diamante");
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Lancer", "Lancer");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"350Z", "350Z");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Murano", "Murano");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Breeze", "Breeze");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
addOption(document.drop_list.Model,"Vibe", "Vibe");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"Ion", "Ion");
addOption(document.drop_list.Model,"L100", "L100");
addOption(document.drop_list.Model,"SL1/SL2", "SL1/SL2");
addOption(document.drop_list.Model,"Vue", "Vue");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Scion'){
addOption(document.drop_list.Model,"xA", "xA");
addOption(document.drop_list.Model,"xB", "xB");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Baja", "Baja");
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Aerio", "Aerio");
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
addOption(document.drop_list.Model,"XL-7", "XL-7");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Echo", "Echo");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Matrix", "Matrix");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2004' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
}

/* ***2003 Vehicles*** */

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
addOption(document.drop_list.Model,"CL", "CL");
addOption(document.drop_list.Model,"MDX", "MDX");
addOption(document.drop_list.Model,"RSX", "RSX");
addOption(document.drop_list.Model,"TL", "TL");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Park Avenue", "Park Avenue");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Lumina", "Lumina");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Avalanche", "Avalanche");
addOption(document.drop_list.Model,"Denali XL", "Denali XL");
addOption(document.drop_list.Model,"Envoy", "Envoy");
addOption(document.drop_list.Model,"Equinox", "Equinox");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"SSR", "SSR");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Uplander", "Uplander");
addOption(document.drop_list.Model,"Venture", "Venture");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"300M", "300M");
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"Concord", "Concord");
addOption(document.drop_list.Model,"Pacifica", "Pacifica");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Daewoo'){
addOption(document.drop_list.Model,"Lanos", "Lanos");
addOption(document.drop_list.Model,"Leganza", "Leganza");
addOption(document.drop_list.Model,"Nubria", "Nubria");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Durango", "Durango");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
addOption(document.drop_list.Model,"Viper", "Viper");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Focus", "Focus");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
addOption(document.drop_list.Model,"Thunderbird", "Thunderbird");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Econoline Van", "Econoline Van");
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"Excursion", "Excursion");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Freestar", "Freestar");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Element", "Element");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Pilot", "Pilot");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Hummer'){
addOption(document.drop_list.Model,"H2", "H2");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
addOption(document.drop_list.Model,"XG", "XG");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"FX 45", "FX 45");
addOption(document.drop_list.Model,"G 35", "G 35");
addOption(document.drop_list.Model,"I 35", "I 35");
addOption(document.drop_list.Model,"M 35", "M 35");
addOption(document.drop_list.Model,"M 45", "M 45");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Ascender", "Ascender");
addOption(document.drop_list.Model,"Axiom", "Axiom");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Amanti", "Amanti");
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sephia", "Sephia");
addOption(document.drop_list.Model,"Sorento", "Sorento");
addOption(document.drop_list.Model,"Spectra", "Spectra");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"ES 300", "ES 300");
addOption(document.drop_list.Model,"ES 330", "ES 330");
addOption(document.drop_list.Model,"ES 430", "ES 430");
addOption(document.drop_list.Model,"GX 470", "GX 470");
addOption(document.drop_list.Model,"IS 200", "IS 200");
addOption(document.drop_list.Model,"IS 300", "IS 300");
addOption(document.drop_list.Model,"RX 300", "RX 300");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"Aviator", "Aviator");
addOption(document.drop_list.Model,"Navigator", "Navigator");
addOption(document.drop_list.Model,"Town Car", "Town Car");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"3", "3");
addOption(document.drop_list.Model,"6", "6");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"Millenia", "Millenia");
addOption(document.drop_list.Model,"Protege", "Protege");
addOption(document.drop_list.Model,"RX-8", "RX-8");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Truck", "B-series Truck");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Cougar", "Cougar");
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Monterey", "Monterey");
addOption(document.drop_list.Model,"Mountaineer", "Mountaineer");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Diamante", "Diamante");
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Lancer", "Lancer");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Murano", "Murano");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Alero", "Alero");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
addOption(document.drop_list.Model,"Vibe", "Vibe");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"Ion", "Ion");
addOption(document.drop_list.Model,"L100", "L100");
addOption(document.drop_list.Model,"SC2", "SC2");
addOption(document.drop_list.Model,"SL1/SL2", "SL1/SL2");
addOption(document.drop_list.Model,"Vue", "Vue");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Scion'){
addOption(document.drop_list.Model,"xA", "xA");
addOption(document.drop_list.Model,"xB", "xB");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Baja", "Baja");
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Aerio", "Aerio");
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
addOption(document.drop_list.Model,"XL-7", "XL-7");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Echo", "Echo");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Matrix", "Matrix");
addOption(document.drop_list.Model,"Prerunner", "Prerunner");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2003' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
}

/* ***2002 Vehicles*** */

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
addOption(document.drop_list.Model,"CL", "CL");
addOption(document.drop_list.Model,"MDX", "MDX");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"RSX", "RSX");
addOption(document.drop_list.Model,"TL", "TL");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Park Avenue", "Park Avenue");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Lumina", "Lumina");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Avalanche", "Avalanche");
addOption(document.drop_list.Model,"Denali XL", "Denali XL");
addOption(document.drop_list.Model,"Envoy", "Envoy");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Tracker", "Tracker");
addOption(document.drop_list.Model,"Trailblazer", "Trailblazer");
addOption(document.drop_list.Model,"Venture", "Venture");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"300M", "300M");
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"Concord", "Concord");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Daewoo'){
addOption(document.drop_list.Model,"Lanos", "Lanos");
addOption(document.drop_list.Model,"Leganza", "Leganza");
addOption(document.drop_list.Model,"Nubria", "Nubria");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Durango", "Durango");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
addOption(document.drop_list.Model,"Viper", "Viper");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"Focus", "Focus");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
addOption(document.drop_list.Model,"Thunderbird", "Thunderbird");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Econoline Van", "Econoline Van");
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"Excursion", "Excursion");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Freestar", "Freestar");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
addOption(document.drop_list.Model,"XG", "XG");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"G 35", "G 35");
addOption(document.drop_list.Model,"I 35", "I 35");
addOption(document.drop_list.Model,"M 45", "M 45");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Axiom", "Axiom");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sephia", "Sephia");
addOption(document.drop_list.Model,"Sorento", "Sorento");
addOption(document.drop_list.Model,"Spectra", "Spectra");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"ES 300", "ES 300");
addOption(document.drop_list.Model,"ES 330", "ES 330");
addOption(document.drop_list.Model,"ES 430", "ES 430");
addOption(document.drop_list.Model,"GX 470", "GX 470");
addOption(document.drop_list.Model,"IS 200", "IS 200");
addOption(document.drop_list.Model,"IS 300", "IS 300");
addOption(document.drop_list.Model,"RX 300", "RX 300");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"Navigator", "Navigator");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"6", "6");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"Millenia", "Millenia");
addOption(document.drop_list.Model,"Protege", "Protege");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Truck", "B-series Truck");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Cougar", "Cougar");
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mountaineer", "Mountaineer");
addOption(document.drop_list.Model,"Tracer", "Tracer");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Diamante", "Diamante");
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Lancer", "Lancer");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"200SX", "200SX");
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Murano", "Murano");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Alero", "Alero");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Breeze", "Breeze");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Aztek", "Aztek");
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"L100", "L100");
addOption(document.drop_list.Model,"SC2", "SC2");
addOption(document.drop_list.Model,"SL1/SL2", "SL1/SL2");
addOption(document.drop_list.Model,"Vue", "Vue");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Aerio", "Aerio");
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
addOption(document.drop_list.Model,"XL-7", "XL-7");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Echo", "Echo");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2002' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
}

/* ***2001 Vehicles*** */

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
addOption(document.drop_list.Model,"CL", "CL");
addOption(document.drop_list.Model,"MDX", "MDX");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"TL", "TL");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Park Avenue", "Park Avenue");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Lumina", "Lumina");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Blazer", "Blazer");
addOption(document.drop_list.Model,"Denali XL", "Denali XL");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Tracker", "Tracker");
addOption(document.drop_list.Model,"Venture", "Venture");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"300M", "300M");
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Daewoo'){
addOption(document.drop_list.Model,"Lanos", "Lanos");
addOption(document.drop_list.Model,"Leganza", "Leganza");
addOption(document.drop_list.Model,"Nubria", "Nubria");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Contour", "Contour");
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"Focus", "Focus");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
addOption(document.drop_list.Model,"Thunderbird", "Thunderbird");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Econoline Van", "Econoline Van");
addOption(document.drop_list.Model,"Escape", "Escape");
addOption(document.drop_list.Model,"Excursion", "Excursion");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Freestar", "Freestar");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
addOption(document.drop_list.Model,"XG", "XG");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"I 35", "I 35");
addOption(document.drop_list.Model,"I 30", "I 30");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Axiom", "Axiom");
addOption(document.drop_list.Model,"Hombre", "Hombre");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Liberty", "Liberty");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Rio", "Rio");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sephia", "Sephia");
addOption(document.drop_list.Model,"Spectra", "Spectra");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"ES 300", "ES 300");
addOption(document.drop_list.Model,"ES 330", "ES 330");
addOption(document.drop_list.Model,"ES 430", "ES 430");
addOption(document.drop_list.Model,"IS 200", "IS 200");
addOption(document.drop_list.Model,"IS 300", "IS 300");
addOption(document.drop_list.Model,"RX 300", "RX 300");
addOption(document.drop_list.Model,"SC 300", "SC 300");
addOption(document.drop_list.Model,"SC 400", "SC 400");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"Navigator", "Navigator");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"6", "6");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"Millenia", "Millenia");
addOption(document.drop_list.Model,"Protege", "Protege");
addOption(document.drop_list.Model,"Tribute", "Tribute");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Truck", "B-series Truck");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Cougar", "Cougar");
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Sable", "Sable");
addOption(document.drop_list.Model,"Tracer", "Tracer");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Diamante", "Diamante");
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Lancer", "Lancer");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"200SX", "200SX");
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Murano", "Murano");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Alero", "Alero");
addOption(document.drop_list.Model,"Cutlass", "Cutlass");
addOption(document.drop_list.Model,"Intrigue", "Intrigue");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Breeze", "Breeze");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Aztek", "Aztek");
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Firebird", "Firebird");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"L100", "L100");
addOption(document.drop_list.Model,"LS", "LS");
addOption(document.drop_list.Model,"SC2", "SC2");
addOption(document.drop_list.Model,"SL1/SL2", "SL1/SL2");
addOption(document.drop_list.Model,"Vue", "Vue");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Aerio", "Aerio");
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Grand Vitara", "Grand Vitara");
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Celica", "Celica");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Echo", "Echo");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tundra", "Tundra");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2001' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
}

/* ***2000 Vehicles*** */

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"TL", "TL");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Park Avenue", "Park Avenue");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Lumina", "Lumina");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Blazer", "Blazer");
addOption(document.drop_list.Model,"Denali XL", "Denali XL");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Tracker", "Tracker");
addOption(document.drop_list.Model,"Venture", "Venture");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Daewoo'){
addOption(document.drop_list.Model,"Lanos", "Lanos");
addOption(document.drop_list.Model,"Leganza", "Leganza");
addOption(document.drop_list.Model,"Nubria", "Nubria");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Grand Caravan", "Grand Caravan");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Intrigue", "Intrigue");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Eagle'){
addOption(document.drop_list.Model,"Summit", "Summit");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Contour", "Contour");
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Econoline Van", "Econoline Van");
addOption(document.drop_list.Model,"Excursion", "Excursion");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Freestar", "Freestar");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Fit", "Fit");
addOption(document.drop_list.Model,"Insight", "Insight");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Prelude", "Prelude");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Santa Fe", "Santa Fe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"I 30", "I 30");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Hombre", "Hombre");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Optima", "Optima");
addOption(document.drop_list.Model,"Sedona", "Sedona");
addOption(document.drop_list.Model,"Sephia", "Sephia");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GS 300", "GS 300");
addOption(document.drop_list.Model,"GS 400", "GS 400");
addOption(document.drop_list.Model,"IS 200", "IS 200");
addOption(document.drop_list.Model,"LS 400", "LS 400");
addOption(document.drop_list.Model,"RX 300", "RX 300");
addOption(document.drop_list.Model,"SC 300", "SC 300");
addOption(document.drop_list.Model,"SC 400", "SC 400");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Lincoln'){
addOption(document.drop_list.Model,"Navigator", "Navigator");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"323", "323");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"Protege", "Protege");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-2300", "B-2300");
addOption(document.drop_list.Model,"B-4000", "B-4000");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Cougar", "Cougar");
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mystique", "Mystique");
addOption(document.drop_list.Model,"Sable", "Sable");
addOption(document.drop_list.Model,"Tracer", "Tracer");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Diamante", "Diamante");
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"200SX", "200SX");
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Xterra", "Xterra");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Alero", "Alero");
addOption(document.drop_list.Model,"Cutlass", "Cutlass");
addOption(document.drop_list.Model,"Intrigue", "Intrigue");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Breeze", "Breeze");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Firebird", "Firebird");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"L100", "L100");
addOption(document.drop_list.Model,"SC2", "SC2");
addOption(document.drop_list.Model,"SL1/SL2", "SL1/SL2");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Celica", "Celica");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Echo", "Echo");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '2000' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
}

/* ***1999 Vehicles*** */

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
addOption(document.drop_list.Model,"RDX", "RDX");
addOption(document.drop_list.Model,"TL", "TL");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Park Avenue", "Park Avenue");
addOption(document.drop_list.Model,"Regal LS", "Regal LS");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Camaro", "Camaro");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Lumina", "Lumina");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Blazer", "Blazer");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Tracker", "Tracker");
addOption(document.drop_list.Model,"Venture", "Venture");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"PT Cruiser", "PT Cruiser");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Daewoo'){
addOption(document.drop_list.Model,"Lanos", "Lanos");
addOption(document.drop_list.Model,"Leganza", "Leganza");
addOption(document.drop_list.Model,"Nubria", "Nubria");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Intrigue", "Intrigue");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Eagle'){
addOption(document.drop_list.Model,"Summit", "Summit");
addOption(document.drop_list.Model,"Talon", "Talon");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Contour", "Contour");
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"Escort ZX2", "Escort ZX2");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Econoline Van", "Econoline Van");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Freestar", "Freestar");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Passport", "Passport");
addOption(document.drop_list.Model,"Prelude", "Prelude");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"I 30", "I 30");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Hombre", "Hombre");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Sephia", "Sephia");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GS 300", "GS 300");
addOption(document.drop_list.Model,"GS 400", "GS 400");
addOption(document.drop_list.Model,"IS 200", "IS 200");
addOption(document.drop_list.Model,"LS 400", "LS 400");
addOption(document.drop_list.Model,"SC 300", "SC 300");
addOption(document.drop_list.Model,"SC 400", "SC 400");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"323", "323");
addOption(document.drop_list.Model,"626", "626");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"Protege", "Protege");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Trucks", "B-series Trucks");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Cougar", "Cougar");
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mystique", "Mystique");
addOption(document.drop_list.Model,"Sable", "Sable");
addOption(document.drop_list.Model,"Tracer", "Tracer");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Diamante", "Diamante");
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"200SX", "200SX");
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Achieva", "Achieva");
addOption(document.drop_list.Model,"Alero", "Alero");
addOption(document.drop_list.Model,"Cutlass", "Cutlass");
addOption(document.drop_list.Model,"Cutlass Supreme", "Cutlass Supreme");
addOption(document.drop_list.Model,"Intrigue", "Intrigue");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Breeze", "Breeze");
addOption(document.drop_list.Model,"Voyager", "Voyager");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Firebird", "Firebird");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"L100", "L100");
addOption(document.drop_list.Model,"SC2", "SC2");
addOption(document.drop_list.Model,"SL1/SL2", "SL1/SL2");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Celica", "Celica");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Yaris", "Yaris");
}

if(document.drop_list.Year.value == '1999' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
}

/* ***1998 Vehicles*** */

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
addOption(document.drop_list.Model,"RDX", "RDX");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Park Avenue", "Park Avenue");
addOption(document.drop_list.Model,"Regal LS", "Regal LS");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Camaro", "Camaro");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Lumina", "Lumina");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Blazer", "Blazer");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Tracker", "Tracker");
addOption(document.drop_list.Model,"Venture", "Venture");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Intrigue", "Intrigue");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Eagle'){
addOption(document.drop_list.Model,"Summit", "Summit");
addOption(document.drop_list.Model,"Talon", "Talon");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Contour", "Contour");
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"Escort ZX2", "Escort ZX2");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Taurus", "Taurus");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Econoline Van", "Econoline Van");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
addOption(document.drop_list.Model,"Passport", "Passport");
addOption(document.drop_list.Model,"Prelude", "Prelude");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"I 30", "I 30");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Hombre", "Hombre");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Sephia", "Sephia");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GS 300", "GS 300");
addOption(document.drop_list.Model,"GS 400", "GS 400");
addOption(document.drop_list.Model,"LS 400", "LS 400");
addOption(document.drop_list.Model,"SC 300", "SC 300");
addOption(document.drop_list.Model,"SC 400", "SC 400");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"323", "323");
addOption(document.drop_list.Model,"626", "626");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"Protege", "Protege");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Trucks", "B-series Trucks");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mystique", "Mystique");
addOption(document.drop_list.Model,"Sable", "Sable");
addOption(document.drop_list.Model,"Tracer", "Tracer");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Diamante", "Diamante");
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"200SX", "200SX");
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Frontier", "Frontier");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Achieva", "Achieva");
addOption(document.drop_list.Model,"Alero", "Alero");
addOption(document.drop_list.Model,"Cutlass", "Cutlass");
addOption(document.drop_list.Model,"Cutlass Supreme", "Cutlass Supreme");
addOption(document.drop_list.Model,"Intrigue", "Intrigue");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Breeze", "Breeze");
addOption(document.drop_list.Model,"Voyager", "Voyager");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Firebird", "Firebird");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"L100", "L100");
addOption(document.drop_list.Model,"SC2", "SC2");
addOption(document.drop_list.Model,"SL1/SL2", "SL1/SL2");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
addOption(document.drop_list.Model,"X90", "X90");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Celica", "Celica");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Paseo", "Paseo");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"Sienna", "Sienna");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"T-100", "T-100");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
}

if(document.drop_list.Year.value == '1998' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Beetle", "Beetle");
}

/* ***1997 Vehicles*** */

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Skylark", "Skylark");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Beretta", "Beretta");
addOption(document.drop_list.Model,"Camaro", "Camaro");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Corsica", "Corsica");
addOption(document.drop_list.Model,"Impala", "Impala");
addOption(document.drop_list.Model,"Lumina", "Lumina");
addOption(document.drop_list.Model,"Malibu", "Malibu");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Blazer", "Blazer");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
addOption(document.drop_list.Model,"Tahoe", "Tahoe");
addOption(document.drop_list.Model,"Venture", "Venture");
addOption(document.drop_list.Model,"Yukon/Yukon XL", "Yukon/Yukon XL");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Intrigue", "Intrigue");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Eagle'){
addOption(document.drop_list.Model,"Summit", "Summit");
addOption(document.drop_list.Model,"Talon", "Talon");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Aspire", "Aspire");
addOption(document.drop_list.Model,"Contour", "Contour");
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Probe", "Probe");
addOption(document.drop_list.Model,"Taurus", "Taurus");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Aerostar", "Aerostar");
addOption(document.drop_list.Model,"Econoline Van", "Econoline Van");
addOption(document.drop_list.Model,"Expedition", "Expedition");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
addOption(document.drop_list.Model,"Tracker", "Tracker");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"CR-V", "CR-V");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Sonata", "Sonata");
addOption(document.drop_list.Model,"Tiburon", "Tiburon");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"I 30", "I 30");
addOption(document.drop_list.Model,"I 35", "I 35");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Hombre", "Hombre");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Sephia", "Sephia");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GS 300", "GS 300");
addOption(document.drop_list.Model,"GS 400", "GS 400");
addOption(document.drop_list.Model,"LS 400", "LS 400");
addOption(document.drop_list.Model,"SC 300", "SC 300");
addOption(document.drop_list.Model,"SC 400", "SC 400");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"323", "323");
addOption(document.drop_list.Model,"626", "626");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"Protege", "Protege");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Trucks", "B-series Trucks");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mystique", "Mystique");
addOption(document.drop_list.Model,"Sable", "Sable");
addOption(document.drop_list.Model,"Tracer", "Tracer");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero Sport", "Montero Sport");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"200SX", "200SX");
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Achieva", "Achieva");
addOption(document.drop_list.Model,"Cutlass Ciera", "Cutlass Ciera");
addOption(document.drop_list.Model,"Cutlass Supreme", "Cutlass Supreme");
addOption(document.drop_list.Model,"Silhouette", "Silhouette");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Breeze", "Breeze");
addOption(document.drop_list.Model,"Voyager", "Voyager");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Firebird", "Firebird");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
addOption(document.drop_list.Model,"Transport", "Transport");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Forester", "Forester");
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Outback", "Outback");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Esteem", "Esteem");
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
}

if(document.drop_list.Year.value == '1997' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Celica", "Celica");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Paseo", "Paseo");
addOption(document.drop_list.Model,"Prius", "Prius");
addOption(document.drop_list.Model,"RAV4", "RAV4");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"T-100", "T-100");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tercel", "Tercel");
}

/* ***1996 Vehicles*** */

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Legend", "Legend");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Park Avenue", "Park Avenue");
addOption(document.drop_list.Model,"Regal", "Regal");
addOption(document.drop_list.Model,"Riviera", "Riviera");
addOption(document.drop_list.Model,"Roadmaster", "Roadmaster");
addOption(document.drop_list.Model,"Skylark", "Skylark");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Beretta", "Beretta");
addOption(document.drop_list.Model,"Camaro", "Camaro");
addOption(document.drop_list.Model,"Caprice", "Caprice");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Corsica", "Corsica");
addOption(document.drop_list.Model,"Impala SS", "Impala SS");
addOption(document.drop_list.Model,"Lumina", "Lumina");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Blazer", "Blazer");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"Lumina APV", "Lumina APV");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"Concord", "Concord");
addOption(document.drop_list.Model,"Sebring", "Sebring");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Avenger", "Avenger");
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Colt", "Colt");
addOption(document.drop_list.Model,"Colt Wagon", "Colt Wagon");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Stratus", "Stratus");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Eagle'){
addOption(document.drop_list.Model,"Summit", "Summit");
addOption(document.drop_list.Model,"Talon", "Talon");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Aspire", "Aspire");
addOption(document.drop_list.Model,"Contour", "Contour");
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Probe", "Probe");
addOption(document.drop_list.Model,"Taurus", "Taurus");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Aerostar", "Aerostar");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-150", "F-150");
addOption(document.drop_list.Model,"F-250", "F-250");
addOption(document.drop_list.Model,"F-350", "F-350");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
addOption(document.drop_list.Model,"Tracker", "Tracker");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"Civic Del Sol", "Civic Del Sol");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Sonata", "Sonata");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"I 30", "I 30");
addOption(document.drop_list.Model,"I 35", "I 35");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
addOption(document.drop_list.Model,"Trooper", "Trooper");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Sephia", "Sephia");
addOption(document.drop_list.Model,"Sportage", "Sportage");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GS 300", "GS 300");
addOption(document.drop_list.Model,"LS 400", "LS 400");
addOption(document.drop_list.Model,"SC 300", "SC 300");
addOption(document.drop_list.Model,"SC 400", "SC 400");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"323", "323");
addOption(document.drop_list.Model,"626", "626");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"Protege", "Protege");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Trucks", "B-series Trucks");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mystique", "Mystique");
addOption(document.drop_list.Model,"Sable", "Sable");
addOption(document.drop_list.Model,"Tracer", "Tracer");
addOption(document.drop_list.Model,"Villager", "Villager");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Galant", "Galant");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"200SX", "200SX");
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Armada", "Armada");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Titan", "Titan");
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Achieva", "Achieva");
addOption(document.drop_list.Model,"Aurora", "Aurora");
addOption(document.drop_list.Model,"Cutlass Ciera", "Cutlass Ciera");
addOption(document.drop_list.Model,"Cutlass Supreme", "Cutlass Supreme");
addOption(document.drop_list.Model,"Delta 88", "Delta 88");
addOption(document.drop_list.Model,"Regency 98", "Regency 98");
addOption(document.drop_list.Model,"Silhouette", "Silhouette");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Voyager", "Voyager");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Firebird", "Firebird");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
addOption(document.drop_list.Model,"Transport", "Transport");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Celica", "Celica");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Paseo", "Paseo");
addOption(document.drop_list.Model,"RAV4", "RAV4");
addOption(document.drop_list.Model,"Solara", "Solara");
addOption(document.drop_list.Model,"T-100", "T-100");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tercel", "Tercel");
}

if(document.drop_list.Year.value == '1996' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Golf", "Golf");
addOption(document.drop_list.Model,"Jetta", "Jetta");
}

/* ***1995 Vehicles*** */

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Integra", "Integra");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Park Avenue", "Park Avenue");
addOption(document.drop_list.Model,"Regal", "Regal");
addOption(document.drop_list.Model,"Riviera", "Riviera");
addOption(document.drop_list.Model,"Roadmaster", "Roadmaster");
addOption(document.drop_list.Model,"Skylark", "Skylark");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Beretta", "Beretta");
addOption(document.drop_list.Model,"Camaro", "Camaro");
addOption(document.drop_list.Model,"Caprice", "Caprice");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Corsica", "Corsica");
addOption(document.drop_list.Model,"Impala SS", "Impala SS");
addOption(document.drop_list.Model,"Lumina", "Lumina");
addOption(document.drop_list.Model,"Monte Carlo", "Monte Carlo");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Blazer", "Blazer");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"Lumina APV", "Lumina APV");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"Cirrus", "Cirrus");
addOption(document.drop_list.Model,"Concord", "Concord");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Colt", "Colt");
addOption(document.drop_list.Model,"Colt Vista", "Colt Vista");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Neon", "Neon");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Spirit", "Spirit");
addOption(document.drop_list.Model,"Stratus", "Stratus");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Eagle'){
addOption(document.drop_list.Model,"Summit", "Summit");
addOption(document.drop_list.Model,"Talon", "Talon");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Aspire", "Aspire");
addOption(document.drop_list.Model,"Contour", "Contour");
addOption(document.drop_list.Model,"Crown Victoria", "Crown Victoria");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Probe", "Probe");
addOption(document.drop_list.Model,"Taurus", "Taurus");
addOption(document.drop_list.Model,"Tempo", "Tempo");
addOption(document.drop_list.Model,"Thunderbird", "Thunderbird");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Aerostar", "Aerostar");
addOption(document.drop_list.Model,"Bronco", "Bronco");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-series Truck", "F-series Truck");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
addOption(document.drop_list.Model,"Tracker", "Tracker");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
addOption(document.drop_list.Model,"Civic Del Sol", "Civic Del Sol");
addOption(document.drop_list.Model,"Odyssey", "Odyssey");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Accent", "Accent");
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Sonata", "Sonata");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Infiniti'){
addOption(document.drop_list.Model,"I 30", "I 30");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Kia'){
addOption(document.drop_list.Model,"Sephia", "Sephia");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GS 300", "GS 300");
addOption(document.drop_list.Model,"LS 400", "LS 400");
addOption(document.drop_list.Model,"SC 300", "SC 300");
addOption(document.drop_list.Model,"SC 400", "SC 400");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"323", "323");
addOption(document.drop_list.Model,"626", "626");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"MX-3", "MX-3");
addOption(document.drop_list.Model,"Protege", "Protege");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Trucks", "B-series Trucks");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Cougar", "Cougar");
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Mystique", "Mystique");
addOption(document.drop_list.Model,"Sable", "Sable");
addOption(document.drop_list.Model,"Topaz", "Topaz");
addOption(document.drop_list.Model,"Tracer", "Tracer");
addOption(document.drop_list.Model,"Villager", "Villager");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Expo", "Expo");
addOption(document.drop_list.Model,"Galant", "Galant");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"200SX", "200SX");
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"Maxima", "Maxima");
addOption(document.drop_list.Model,"NX", "NX");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Achieva", "Achieva");
addOption(document.drop_list.Model,"Aurora", "Aurora");
addOption(document.drop_list.Model,"Cutlass Ciera", "Cutlass Ciera");
addOption(document.drop_list.Model,"Cutlass Supreme", "Cutlass Supreme");
addOption(document.drop_list.Model,"Delta 88", "Delta 88");
addOption(document.drop_list.Model,"Silhouette", "Silhouette");
addOption(document.drop_list.Model,"Supreme", "Supreme");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Acclaim", "Acclaim");
addOption(document.drop_list.Model,"Voyager", "Voyager");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Firebird", "Firebird");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"Sunfire", "Sunfire");
addOption(document.drop_list.Model,"Transport", "Transport");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Celica", "Celica");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"T-100", "T-100");
addOption(document.drop_list.Model,"Tacoma", "Tacoma");
addOption(document.drop_list.Model,"Tercel", "Tercel");
}

if(document.drop_list.Year.value == '1995' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Golf", "Golf");
addOption(document.drop_list.Model,"Jetta", "Jetta");
}

/* ***1994 Vehicles*** */

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Integra", "Integra");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Regal", "Regal");
addOption(document.drop_list.Model,"Skylark", "Skylark");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Beretta", "Beretta");
addOption(document.drop_list.Model,"Camaro", "Camaro");
addOption(document.drop_list.Model,"Caprice", "Caprice");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Corsica", "Corsica");
addOption(document.drop_list.Model,"Lumina", "Lumina");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Blazer", "Blazer");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"Lumina APV", "Lumina APV");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"Concord", "Concord");
addOption(document.drop_list.Model,"LeBaron", "LeBaron");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Colt", "Colt");
addOption(document.drop_list.Model,"Colt Vista", "Colt Vista");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Daytona", "Daytona");
addOption(document.drop_list.Model,"Duster", "Duster");
addOption(document.drop_list.Model,"Dynasty", "Dynasty");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Laser", "Laser");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram Charger", "Ram Charger");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Shadow", "Shadow");
addOption(document.drop_list.Model,"Spirit", "Spirit");
addOption(document.drop_list.Model,"Stealth", "Stealth");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Eagle'){
addOption(document.drop_list.Model,"Summit", "Summit");
addOption(document.drop_list.Model,"Talon", "Talon");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Capri", "Capri");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"LTD", "LTD");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Probe", "Probe");
addOption(document.drop_list.Model,"Taurus", "Taurus");
addOption(document.drop_list.Model,"Tempo", "Tempo");
addOption(document.drop_list.Model,"Thunderbird", "Thunderbird");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Aerostar", "Aerostar");
addOption(document.drop_list.Model,"Bronco", "Bronco");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-series Truck", "F-series Truck");
addOption(document.drop_list.Model,"Ranger", "Ranger");
addOption(document.drop_list.Model,"Windstar", "Windstar");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
addOption(document.drop_list.Model,"Tracker", "Tracker");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Accord", "Accord");
addOption(document.drop_list.Model,"Civic", "Civic");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Excel", "Excel");
addOption(document.drop_list.Model,"Scoupe", "Scoupe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Amigo", "Amigo");
addOption(document.drop_list.Model,"Pickup", "Pickup");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
addOption(document.drop_list.Model,"Trooper", "Trooper");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Grand Cherokee", "Grand Cherokee");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GS 300", "GS 300");
addOption(document.drop_list.Model,"LS 400", "LS 400");
addOption(document.drop_list.Model,"SC 300", "SC 300");
addOption(document.drop_list.Model,"SC 400", "SC 400");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"323", "323");
addOption(document.drop_list.Model,"626", "626");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"MX-3", "MX-3");
addOption(document.drop_list.Model,"Protege", "Protege");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Trucks", "B-series Trucks");
addOption(document.drop_list.Model,"MPV", "MPV");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Sable", "Sable");
addOption(document.drop_list.Model,"Topaz", "Topaz");
addOption(document.drop_list.Model,"Tracer", "Tracer");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Expo", "Expo");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Mirage", "Mirage");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"NX", "NX");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Achieva", "Achieva");
addOption(document.drop_list.Model,"Cutlass Ciera", "Cutlass Ciera");
addOption(document.drop_list.Model,"Delta 88", "Delta 88");
addOption(document.drop_list.Model,"Supreme", "Supreme");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Acclaim", "Acclaim");
addOption(document.drop_list.Model,"Sundance", "Sundance");
addOption(document.drop_list.Model,"Voyager", "Voyager");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Firebird", "Firebird");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"LeMans", "LeMans");
addOption(document.drop_list.Model,"Sunbird", "Sunbird");
addOption(document.drop_list.Model,"Transport", "Transport");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Celica", "Celica");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"T-100", "T-100");
addOption(document.drop_list.Model,"Tercel", "Tercel");
}

if(document.drop_list.Year.value == '1994' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Golf", "Golf");
addOption(document.drop_list.Model,"Jetta", "Jetta");
}

/* ***1993 Vehicles*** */

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Acura'){
addOption(document.drop_list.Model,"Integra", "Integra");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Regal", "Regal");
addOption(document.drop_list.Model,"Skylark", "Skylark");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Beretta", "Beretta");
addOption(document.drop_list.Model,"Caprice", "Caprice");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Corsica", "Corsica");
addOption(document.drop_list.Model,"Lumina", "Lumina");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Blazer", "Blazer");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"Lumina APV", "Lumina APV");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"Concord", "Concord");
addOption(document.drop_list.Model,"LeBaron", "LeBaron");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Colt", "Colt");
addOption(document.drop_list.Model,"Colt Vista", "Colt Vista");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Daytona", "Daytona");
addOption(document.drop_list.Model,"Duster", "Duster");
addOption(document.drop_list.Model,"Dynasty", "Dynasty");
addOption(document.drop_list.Model,"Intrepid", "Intrepid");
addOption(document.drop_list.Model,"Laser", "Laser");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram 50", "Ram 50");
addOption(document.drop_list.Model,"Ram Charger", "Ram Charger");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Shadow", "Shadow");
addOption(document.drop_list.Model,"Spirit", "Spirit");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Eagle'){
addOption(document.drop_list.Model,"Summit", "Summit");
addOption(document.drop_list.Model,"Talon", "Talon");
addOption(document.drop_list.Model,"Vision", "Vision");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Capri", "Capri");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"LTD", "LTD");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Probe", "Probe");
addOption(document.drop_list.Model,"Taurus", "Taurus");
addOption(document.drop_list.Model,"Tempo", "Tempo");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Aerostar", "Aerostar");
addOption(document.drop_list.Model,"Bronco", "Bronco");
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-series Truck", "F-series Truck");
addOption(document.drop_list.Model,"Ranger", "Ranger");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
addOption(document.drop_list.Model,"Storm SOHC", "Storm SOHC");
addOption(document.drop_list.Model,"Tracker", "Tracker");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Civic", "Civic");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Scoupe", "Scoupe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Amigo", "Amigo");
addOption(document.drop_list.Model,"Impulse", "Impulse");
addOption(document.drop_list.Model,"Pickup", "Pickup");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
addOption(document.drop_list.Model,"Stylus", "Stylus");
addOption(document.drop_list.Model,"Trooper", "Trooper");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"GS 300", "GS 300");
addOption(document.drop_list.Model,"LS 400", "LS 400");
addOption(document.drop_list.Model,"SC 300", "SC 300");
addOption(document.drop_list.Model,"SC 400", "SC 400");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"323", "323");
addOption(document.drop_list.Model,"626", "626");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"MX-3", "MX-3");
addOption(document.drop_list.Model,"Protege", "Protege");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Trucks", "B-series Trucks");
addOption(document.drop_list.Model,"MPV", "MPV");
addOption(document.drop_list.Model,"Navajo", "Navajo");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Sable", "Sable");
addOption(document.drop_list.Model,"Topaz", "Topaz");
addOption(document.drop_list.Model,"Tracer", "Tracer");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Expo", "Expo");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Pickup", "Pickup");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"Altima", "Altima");
addOption(document.drop_list.Model,"NX", "NX");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Quest", "Quest");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Stanza", "Stanza");
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Achieva", "Achieva");
addOption(document.drop_list.Model,"Cutlass Ciera", "Cutlass Ciera");
addOption(document.drop_list.Model,"Cutlass Supreme", "Cutlass Supreme");
addOption(document.drop_list.Model,"Delta 88", "Delta 88");
addOption(document.drop_list.Model,"Silhouette", "Silhouette");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Acclaim", "Acclaim");
addOption(document.drop_list.Model,"Sundance", "Sundance");
addOption(document.drop_list.Model,"Voyager", "Voyager");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"LeMans", "LeMans");
addOption(document.drop_list.Model,"Sunbird", "Sunbird");
addOption(document.drop_list.Model,"Transport", "Transport");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"SL1", "SL1");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Impreza", "Impreza");
addOption(document.drop_list.Model,"Legacy", "Legacy");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Celica", "Celica");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"T-100", "T-100");
addOption(document.drop_list.Model,"Tercel", "Tercel");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Volkswagen'){
addOption(document.drop_list.Model,"Golf", "Golf");
}

/* ***1992 Vehicles*** */

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Buick'){
addOption(document.drop_list.Model,"Century", "Century");
addOption(document.drop_list.Model,"LeSabre", "LeSabre");
addOption(document.drop_list.Model,"Regal", "Regal");
addOption(document.drop_list.Model,"Skylark", "Skylark");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Chevrolet'){
addOption(document.drop_list.Model,"Beretta", "Beretta");
addOption(document.drop_list.Model,"Camaro", "Camaro");
addOption(document.drop_list.Model,"Caprice", "Caprice");
addOption(document.drop_list.Model,"Cavalier", "Cavalier");
addOption(document.drop_list.Model,"Corsica", "Corsica");
addOption(document.drop_list.Model,"Lumina", "Lumina");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Chevrolet/GMC Trucks and Vans'){
addOption(document.drop_list.Model,"Astro/Safari Vans", "Astro/Safari Vans");
addOption(document.drop_list.Model,"Blazer", "Blazer");
addOption(document.drop_list.Model,"Express/Savana Van", "Express/Savana Van");
addOption(document.drop_list.Model,"Lumina APV", "Lumina APV");
addOption(document.drop_list.Model,"S-10/Sonoma", "S-10/Sonoma");
addOption(document.drop_list.Model,"Silverado/Sierra", "Silverado/Sierra");
addOption(document.drop_list.Model,"Suburban", "Suburban");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Chrysler'){
addOption(document.drop_list.Model,"LeBaron", "LeBaron");
addOption(document.drop_list.Model,"Town & Country", "Town & Country");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Dodge'){
addOption(document.drop_list.Model,"Caravan", "Caravan");
addOption(document.drop_list.Model,"Colt", "Colt");
addOption(document.drop_list.Model,"Colt Vista", "Colt Vista");
addOption(document.drop_list.Model,"Dakota", "Dakota");
addOption(document.drop_list.Model,"Daytona", "Daytona");
addOption(document.drop_list.Model,"Duster", "Duster");
addOption(document.drop_list.Model,"Dynasty", "Dynasty");
addOption(document.drop_list.Model,"Laser", "Laser");
addOption(document.drop_list.Model,"Ram", "Ram");
addOption(document.drop_list.Model,"Ram 50", "Ram 50");
addOption(document.drop_list.Model,"Ram Charger", "Ram Charger");
addOption(document.drop_list.Model,"Ram Van", "Ram Van");
addOption(document.drop_list.Model,"Shadow", "Shadow");
addOption(document.drop_list.Model,"Spirit", "Spirit");
addOption(document.drop_list.Model,"Stealth", "Stealth");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Eagle'){
addOption(document.drop_list.Model,"Summit", "Summit");
addOption(document.drop_list.Model,"Talon", "Talon");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Ford'){
addOption(document.drop_list.Model,"Capri", "Capri");
addOption(document.drop_list.Model,"Escort", "Escort");
addOption(document.drop_list.Model,"LTD", "LTD");
addOption(document.drop_list.Model,"Mustang", "Mustang");
addOption(document.drop_list.Model,"Probe", "Probe");
addOption(document.drop_list.Model,"Taurus", "Taurus");
addOption(document.drop_list.Model,"Tempo", "Tempo");
addOption(document.drop_list.Model,"Thunderbird", "Thunderbird");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Ford Trucks and Vans'){
addOption(document.drop_list.Model,"Explorer", "Explorer");
addOption(document.drop_list.Model,"F-series Truck", "F-series Truck");
addOption(document.drop_list.Model,"Ranger", "Ranger");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Geo'){
addOption(document.drop_list.Model,"Metro", "Metro");
addOption(document.drop_list.Model,"Prizm", "Prizm");
addOption(document.drop_list.Model,"Storm SOHC", "Storm SOHC");
addOption(document.drop_list.Model,"Tracker", "Tracker");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Honda'){
addOption(document.drop_list.Model,"Civic", "Civic");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Hyundai'){
addOption(document.drop_list.Model,"Elantra", "Elantra");
addOption(document.drop_list.Model,"Scoupe", "Scoupe");
addOption(document.drop_list.Model,"Sonata", "Sonata");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Isuzu'){
addOption(document.drop_list.Model,"Amigo", "Amigo");
addOption(document.drop_list.Model,"Impulse", "Impulse");
addOption(document.drop_list.Model,"Pickup", "Pickup");
addOption(document.drop_list.Model,"Rodeo", "Rodeo");
addOption(document.drop_list.Model,"Stylus", "Stylus");
addOption(document.drop_list.Model,"Trooper", "Trooper");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Jeep'){
addOption(document.drop_list.Model,"Cherokee", "Cherokee");
addOption(document.drop_list.Model,"Comanche", "Comanche");
addOption(document.drop_list.Model,"Wrangler", "Wrangler");
}

if(document.drop_list.Year.value == '1993' && document.drop_list.Make.value == 'Lexus'){
addOption(document.drop_list.Model,"LS 400", "LS 400");
addOption(document.drop_list.Model,"SC 300", "SC 300");
addOption(document.drop_list.Model,"SC 400", "SC 400");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Mazda'){
addOption(document.drop_list.Model,"323", "323");
addOption(document.drop_list.Model,"626", "626");
addOption(document.drop_list.Model,"Miata", "Miata");
addOption(document.drop_list.Model,"MX-3", "MX-3");
addOption(document.drop_list.Model,"MX-6", "MX-6");
addOption(document.drop_list.Model,"Protege", "Protege");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Mazda Trucks'){
addOption(document.drop_list.Model,"B-series Trucks", "B-series Trucks");
addOption(document.drop_list.Model,"MPV", "MPV");
addOption(document.drop_list.Model,"Navajo", "Navajo");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Mercury'){
addOption(document.drop_list.Model,"Cougar", "Cougar");
addOption(document.drop_list.Model,"Grand Marquis", "Grand Marquis");
addOption(document.drop_list.Model,"Sable", "Sable");
addOption(document.drop_list.Model,"Topaz", "Topaz");
addOption(document.drop_list.Model,"Tracer", "Tracer");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Mitsubishi'){
addOption(document.drop_list.Model,"Eclipse", "Eclipse");
addOption(document.drop_list.Model,"Galant", "Galant");
addOption(document.drop_list.Model,"Mirage", "Mirage");
addOption(document.drop_list.Model,"Montero", "Montero");
addOption(document.drop_list.Model,"Pickup", "Pickup");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Nissan'){
addOption(document.drop_list.Model,"240SX", "240SX");
addOption(document.drop_list.Model,"NX", "NX");
addOption(document.drop_list.Model,"Pathfinder", "Pathfinder");
addOption(document.drop_list.Model,"Sentra", "Sentra");
addOption(document.drop_list.Model,"Stanza", "Stanza");
addOption(document.drop_list.Model,"Truck", "Truck");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Oldsmobile'){
addOption(document.drop_list.Model,"Achieva", "Achieva");
addOption(document.drop_list.Model,"Cutlass Ciera", "Cutlass Ciera");
addOption(document.drop_list.Model,"Cutlass Supreme", "Cutlass Supreme");
addOption(document.drop_list.Model,"Delta 88", "Delta 88");
addOption(document.drop_list.Model,"Silhouette", "Silhouette");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Plymouth'){
addOption(document.drop_list.Model,"Acclaim", "Acclaim");
addOption(document.drop_list.Model,"Sundance", "Sundance");
addOption(document.drop_list.Model,"Voyager", "Voyager");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Pontiac'){
addOption(document.drop_list.Model,"Bonneville", "Bonneville");
addOption(document.drop_list.Model,"Firebird", "Firebird");
addOption(document.drop_list.Model,"Grand Am", "Grand Am");
addOption(document.drop_list.Model,"Grand Prix", "Grand Prix");
addOption(document.drop_list.Model,"LeMans", "LeMans");
addOption(document.drop_list.Model,"Sunbird", "Sunbird");
addOption(document.drop_list.Model,"Transport", "Transport");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Saturn'){
addOption(document.drop_list.Model,"SL1", "SL1");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Subaru'){
addOption(document.drop_list.Model,"Justy EFC", "Justy EFC");
addOption(document.drop_list.Model,"Justy MPFI", "Justy MPFI");
addOption(document.drop_list.Model,"Legacy", "Legacy");
addOption(document.drop_list.Model,"Outback", "Outback");
addOption(document.drop_list.Model,"XT6", "XT6");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Suzuki'){
addOption(document.drop_list.Model,"Sidekick", "Sidekick");
addOption(document.drop_list.Model,"Swift", "Swift");
}

if(document.drop_list.Year.value == '1992' && document.drop_list.Make.value == 'Toyota'){
addOption(document.drop_list.Model,"4Runner", "4Runner");
addOption(document.drop_list.Model,"Camry", "Camry");
addOption(document.drop_list.Model,"Celica", "Celica");
addOption(document.drop_list.Model,"Corolla", "Corolla");
addOption(document.drop_list.Model,"Land Cruiser", "Land Cruiser");
addOption(document.drop_list.Model,"Pickup", "Pickup");
addOption(document.drop_list.Model,"Tercel", "Tercel");
}

}


////////////////// 

function removeAllOptions(selectbox)
{
	var i;
	for(i=selectbox.options.length-1;i>=0;i--)
	{
		//selectbox.options.remove(i);
		selectbox.remove(i);
	}
}


function addOption(selectbox, value, text )
{
	var optn = document.createElement("OPTION");
	optn.text = text;
	optn.value = value;

	selectbox.options.add(optn);
}

