I have an select box:
Number 0 Number 1
NB:
$('#selectBox option')[3].attr('selected', 'selected')
is incorrect, the array deference gets you the dom object, not a jquery object, so it will fail with a TypeError, for instance in FF with: "$('#selectBox option')[3].attr() not a function."