function ChangeDate(y,m,d)
	{
	var year
	var month
	year = y.value % 4
	month = m.value

	if (month==4 || month==6 || month==9 || month==11)
		{
		d.options[28] = new Option('29','29');
		d.options[29] = new Option('30','30');
		d.options[30] = new Option('31','31');
		d.options.length--;
		}
	else if (month==2 && year == 0)
		{
//		d.options[28] = new Option('29','29');
//		d.options[29] = new Option('30','30');
//		d.options[30] = new Option('31','31');
		if (d.options.length > 28){
			d.options.remove(30);
			d.options.remove(29);
			}
		else 	{
			d.options[28] = new Option('29','29')
			}
		}
	else if (month== 2 && year != 0)
		{
//		d.options[28] = new Option('29','29');
//		d.options[29] = new Option('30','30');
//		d.options[30] = new Option('31','31');
		d.options.remove(30);
		d.options.remove(29);
		d.options.remove(28);
		}
	else{
		d.options[28] = new Option('29','29');
		d.options[29] = new Option('30','30');
		d.options[30] = new Option('31','31');
		}
	}

