How to show/hide a checkbox based on select option value? I want to show a checkbox based on a single value in select option and want to hide it when other values are selected. I am trying for jquery solution.
$('#abcselect').change(function(){$('#unknownlicense').toggle($(this).val() == 'first')});