Jika kotak centang dicentangkan popup modal terbuka

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