There is an In() option in SQL but as far as I know there isn't in VBScript, you try the Select statement:
myVar = 3
Select Case myVar
Case 1
Wscript.Echo "A single value"
Case 2,3,5
Wscript.Echo "Multiple Values"
Case Else
Wscript.Echo "any other value"
End Select