shell bypass 403
$(function () {
$('#checkbox').click(function () {
if ($(this).is(':checked')) {
$('#submitBtn').removeAttr('disabled');
} else {
$('#submitBtn').attr('disabled', 'disabled');
}
});
});