I want a combobox by default selected the last option (using jquery):
item1 item2
A plain JavaScript solution:
select.selectedIndex = select.options.length-1;
Demo