$(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
});
$('select option[value=8272]').attr('selected', '');
$("div.id_100 select").val("val2");
<select onchange="getval(this);">
<option value="1">One</option>
<option value="2">Two</option>
</select>
Run code snippet
function getval(sel)
{
alert(sel.value);
}