//Fast Booking Get Months
var months = ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"];
var now = new Date();
now = now.getMonth();
for(i=0; i<12; i++) {
if (i == now)
        document.writeln("<option value='"+(i+1)+"' selected>"+months[i]+"</option>");
else
        document.writeln("<option value='"+(i+1)+"' >"+months[i]+"</option>");
}
