<input type="checkbox" name="first" id="f1" />
<input type="checkbox" name="second" class="ch" disabled />
<input type="checkbox" name="second" class="ch" disabled />
$("#f1").change(function() {
if ($("#f1").prop('checked')) {
$(".ch").prop("disabled", false);
}
else {
$(".ch").prop("disabled", true);
}
});