Here is the example of what I am doing:
var size = new Array("S", "M", "L", "XL", "XXL"); var color =
Yes it is. You can use
alert(options[0][0])
to get the size "S"
or
alert(options[0][1])
to get the color "Red"