$('#selectBox option').get(3).attr('selected', 'selected')
When using the above I kept getting errors in webkit (Chrome) saying:
"Uncaught TypeError: Object # has no method 'attr'"
This syntax stops those errors.
$($('#selectBox option').get(3)).attr('selected', 'selected');