function changeYear()
    {	
        var select = document.getElementById("year");
        var optionValue = select.options[select.selectedIndex].value;
        var ran=Math.floor(Math.random()*101)
        if(optionValue != "null"){
            document.location.href = "?year="+optionValue+"&ran="+ran;
        }
   }
		
