clear options from select jquery code example
Example 1: remove all options from select jquery
$('#mySelect')
.empty()
Example 2: jquery select clear options
$('#mySelect')
.find('option')
.remove()
.end()
.append('<option value="whatever">text</option>')
.val('whatever')
;