Create a drop down from a result
I am trying to create a multiple option dropdown from a result in a previous box. for example. if you select "740" then you have can 1/2,3/4, or 1.0 if you select "560" then you can have 1.25, 1.5, or 2.0
var v1 = this.getField("Series").value;
if (v1 == 740) {
event.value = "1/2,3/4,1.0";}
only the 1/2 shows up and i need all three to be an option to select.
