オプション値と以前の値が一致する場合、jqueryを使用してそのドロップダウンに表示されません
編集
ユーザーのコメントに基づいて選択ボックスにデータを入力する
$.each(g_Vehicle, function (index) {
var iYear = g_Vehicle[index].Year;
sMake = g_Vehicle[index].Make;
selectYear = '<option value="' + iYear + '">' + iYear + '</option>'; selectMake = '<option value="' + sMake + '">' + sMake + '</option>';
$("#DropDown_Year").append(selectYear);
$("#DropDown_Make").append(selectMake);
});