Open modal upon selection of an option in a select
$('select').change(function () { if ($(this).val() == "thevalue") { $('#themodal').modal('show'); } });