Se a caixa de seleção estiver verificada aberta pop -up modal
$('input[type="checkbox"]').on('change', function(e){
if(e.target.checked){
$('#myModal').modal();
}
});
Shy Skipper