        	var minLevel=1;
			var maxLevel=90;
			function setStartLevel(){
				for(var i=minLevel;i<maxLevel;i++){
					document.write('<option value="' + i + '">' + i + '</option>');
				}
			}
			function setEndLevel(){
				for(var i=maxLevel;i>minLevel;i--){
					document.write('<option value="' + i + '">' + i + '</option>');
				}
			} 
