/*abm_admin*/ jQuery(document).ready(function() { jQuery(".AdtxtBoxCheckbox").change(function() { if(this.checked) { jQuery(this).parent().parent().find('.AdtxtBoxSelect').prop('disabled', false); }else{ jQuery(this).parent().parent().find('.AdtxtBoxSelect').prop('disabled', true); } }); });