xxxxxxxxxx
$('select2element').val(null).trigger("change")
xxxxxxxxxx
$('#mySelect')
.find('option')
.remove()
.end()
.append('<option value="whatever">text</option>')
.val('whatever')
;
xxxxxxxxxx
// Assuming the select element has the id "mySelect"
$("#mySelect").empty();