function show_programs(){
	var month = document.getElementById('monthes').value;
 	$(".monthmonth").children("div").css({display: "none"});
  	$(".month0 input").attr({checked: "true"});
   	if (month!=0) {
    	$(".month"+month).add(".month0").fadeIn(300);
    }
}
