Working with Select Element
//Get the value of a selected option
$('selectElement').val();
//Get the text of a selected option
$('#selectElementId :selected').text();
//Remove an option (e.g. id=1)
$("#selectElementId option[value='1']").remove();