Jeśli pole wyboru jest zaznaczone otwarte modalne wyskakujące okienko

$('input[type="checkbox"]').on('change', function(e){
   if(e.target.checked){
     $('#myModal').modal();
   }
});
Shy Skipper