    $(document).ready(function(){
		$(".exp_date_fields input").each(function() {
			$(this).datepicker({ dateFormat: 'dd-mm-yy' });
		});

	    $(".no_contract input").each(function() {
			$(this).change(function(){
				if( $(this).is(':checked') )
				{
					var data = $(this).attr('id').split('_');
					$("#"+data[0]+"_date").attr('disabled', 'disabled').val('');
				}
				else
				{
					var data = $(this).attr('id').split('_');
					$("#"+data[0]+"_date").removeAttr('disabled');
				}
			});
		});
	});
