<input type="button" name="Submit" value=" >> " onclick=doNext()>
<script>
function doNext(){
  n=document.all.select.options.length;
  i=document.all.select.selectedIndex;
  i++;
  if (i<n) document.all.select.selectedIndex=i;
}
</script>