	$(document).ready(function(event) {
		var Val = $("#myForm").serialize();
		$.ajax({
			type: 'GET',
			url: '/calendar.php',
			data: Val,
			dataType: 'html',

			success: function(response) {
				$('#calendar').html(response);
			}
		});
	});

$(function() { 
	$("#id_item").change(function(event) { 
		event.preventDefault();
		var Val = $("#myForm").serialize();
		$.ajax({
			type: 'GET',
			url: '/calendar.php',
			data: Val,
			dataType: 'html',

			success: function(response) {
				$('#calendar').html(response);
			}
		});
	});
	
	$("#month").change(function(event) { 
		event.preventDefault();
		var Val = $("#myForm").serialize();
		$.ajax({
			type: 'GET',
			url: '/calendar.php',
			data: Val,
			dataType: 'html',

			success: function(response) {
				$('#calendar').html(response);
			}
		});
	});



});

