I am using choose master http://harvesthq.github.com/chosen/
Example
<select data-placeholder="Click to Select Role..." style="width:200px;" id="geoRange" name="geoRange" class="chzn-select" tabindex="8" multiple>
<option value="1">England</option>
</select>
I am adding new option in this select
$('#geoRange').append( new Option('USA',2) );
It is not working
How can I add new option?
