I've come across several questions and the closest one was this one:
However, when I recreate the solution, all three checkboxes are being checked. I need a way to have just one or 2 boxes checked based on input matching
$(document).ready(function () {
$('.jobknowledge select').on('change', function () {
if ($('.jobknowledge select').val() == 2) {
$('.jobknowledgecheckbox input').prop('checked', true);
}
});
});