jquery select last option
В примере если опций 2 то выбирать последнюю
var select_format=$('select[name=format]'); var options_count=select_format.find('option').length; if(options_count==2){ select_format.prop('selectedIndex',options_count-1).change(); }