Returning Client Form
Please enter your details below and we will be in touch as soon as possible.
function checkDate() {
var d=new Date(); if(($('#startmonth').val()<(d.getMonth()+1))&&($('#startyear').val()<=(d.getYear()+1900))) { alert('Please choose a future date'); } }
$(document).ready(function(){
$('#startmonth').change(function(){ checkDate();
$('#endday').val($('#startday').val()); $('#endmonth').val($('#startmonth').val()); $('#endyear').val($('#startyear').val()); });
});



