	$(document).ready(function(){
		$('#txtValue').keyup(function(){
			sendValue($(this).val());	
		});	
	});
	function sendValue(year,month){
		$.post("ajax.php", { sendToValue: 'create_calendar',sendToYear: year, sendToMonth: month },
		function(data){
			$('#calendar').html(data.returnFromValue);
		}, "json");
	}

