jquery select an option with a specific value code example
Example 1: jquery select option by value
$('.id_100 option[value=val2]').attr('selected','selected');
Example 2: How do you select a particular option in a SELECT element in jQuery?
$('.selDiv option:eq(1)')