I\'m using the Bootstrap-Select plugin like this:
HTML:
$('#mybutton').click(function(){ $('select[name=selValue]').val(1); $('select[name=selValue]').change(); });
This worked for me.