super(element, data, dataPath);
// fill the optionList value with the various
optionList = new Vector(); // OPTIONs that are a part of this SELECT tag.
formOptions = (JSObject) element.getMember("options");
JSObject option;
int numOptions = NSFieldManager.intValue(formOptions.getMember("length"));
for (int optIdx = 0; optIdx < numOptions; optIdx++)
optionList.addElement(getOptionValue(formOptions, optIdx));
if (variantValue != null) paint();