var length = $('#mySelectList').children('option').length;
or
var length = $('#mySelectList > option').length;
This assumes your <select> list has an ID of mySelectList.
- http://api.jquery.com/length/
- http://api.jquery.com/children/
- http://api.jquery.com/child-selector/