I want a combobox by default selected the last option (using jquery):
item1 item2
Just using vanilla Javascript you can combine .selectedIndex and .length properties of the < select > dom object in order to achieve this:
document.querySelector("#mySelect").selectedIndex = document.querySelector("#mySelect").length - 1;
item1 item2 item3 item4 item5