﻿jQuery.fn.trimOptions = function(num) {
	
		this.each(function() {
			while(this.options.length > num) {
				var idx = this.options.length-1;
				this.options[idx] = null;
			}
		});
    
	return this;
}
