$(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', '');
$('#choose').change(function(event) {
$.post('info.php', { selected: $('#choose').val() },
function(data) {
$('#update').html(data);
}
);
});
$("#id_of_select_input").val('value of option to set as selected');
<select onchange="getval(this);">
<option value="1">One</option>
<option value="2">Two</option>
</select>
Run code snippet
function getval(sel)
{
alert(sel.value);
}