set new select value jquery code example
Example 1: jquery add option to select
//add option to select with jQuery
$('#selectID').append($('<option>', {
value: 1,
text: 'Option Text'
}));
Example 2: How do you select a particular option in a SELECT element in jQuery?
$('.selDiv option:eq(1)')