1$(document).ready(function() {
2 $("#gate option[value='Gateway 2']").prop('selected', true);
3 // you need to specify id of combo to set right combo, if more than one combo
4});
5
1$("#mySelectElementID").val("my_new_value"); //change selected option/value with jQuery
2