Add item to list in the begining
$("#ddlList").prepend('<option selected="selected" value="0"> Select </option>');
Add item to list in the end
$('<option value="6">Java Script</option>').appendTo("#ddlList");
Common Dropdown operation (Get, Set, Add, Remove) using jQuery