if($(".form-group-label").children("input[type=checkbox]").val() != 0) {
console.log($(this));
$(this).prop("checked") == true;
}else{
$(this).prop("checked") == false;
}
$('form').find(':checkbox').each(function(){
if ($(this).val() != 0) {
$(this).prop('checked', true)
}
})