.container
input#check(type="checkbox")
label(for="check")
| Текст
$('.js-check').on('click', function () {
$(this).parents('.js-check-parent').find('.js-send').prop('disabled', function(i, v) { return !v; });
});