function checkDates()
{
	var today = new Date();
	var tomorrow = today.getDate() + 1;
	if (tomorrow == "32") tomorrow ='1';
	var from = document.getElementById('selDayFrom');
	var to = document.getElementById('selDayTo');
	for (i='0'; i<from.length; i++)
	{
		if (tomorrow == from.options[i].value) from.options[i].selected = "true";
		if (tomorrow == to.options[i].value) to.options[i].selected = "true";
	}
	
	var monthfrom = document.getElementById('selMonFrom');
	var monthto = document.getElementById('selMonTo');
	var month = today.getMonth();
	if (tomorrow == "1") month = '0';
	
	for (i='0'; i<monthfrom.length; i++)
	{
		if (month == i) monthfrom.options[i].selected = "true";
		if (month == i) monthto.options[i].selected = "true";
	}
}