

jQuery(document).ready(function ()
{
		
	jQuery("#HAVE_D_LICENCE").click(function() {
		if(jQuery("input[@name='HAVE_D_LICENCE']:checked").val() == 'yes')
		{
			jQuery("#submit").attr('disabled', '');
		}
		else
		{
			jQuery("#submit").attr('disabled', 'disabled');
		}
	});
	

});

