I'm using chosen js lib:
<select class="chosen-select" name="country" id="country" onchange="setCountry('client');">
...
</select>
Then i need change this select element:
$("#country").append('<option value="'+ countryid +'">' + countryname + '</option>');
But it doesn't work with this lib and works without. How i can fix it? Thanks!