Select is the way to go... but else if is an option, just not with elseif ;\)

 Code:
If $x = "1"
	;Do stuff
Else
  if $y= 1
	;Do other stuff
  else
        ;Do fun stuff
  endif
EndIf