<html>
<head>
</head>
<body>
<input type="button">
<script>
a="зима весна лето осень".split(" ")
i = Math.round((Math.random()*3))
b=document.querySelector("input")
b.value = a[i]
b.onclick=function(){
if(i==a.length-1) i=-1
this.value = a[++i];
}
</script>
</body>
</html>