Stellen Sie die Option aus, die Option als ausgewählte JQuery auswählen
$(document).ready(function() {
$("#gate option[value='Gateway 2']").prop('selected', true);
// you need to specify id of combo to set right combo, if more than one combo
});
Cloudy Copperhead