/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke
ISBN: 067231763X
Publisher Sams CopyRight 2000
+-----------------+---------------------------------------------------------------+
Property Description
defaultSelected Refers to the option that is selected by default from the
select box. This property was added in JavaScript 1.1.
+-----------------+---------------------------------------------------------------+
index Refers to the zero-based indexed location of an element in
the Select.options array.
+-----------------+---------------------------------------------------------------+
selected Refers to the selected value of the select box. This
property was added in JavaScript 1.2.
+-----------------+---------------------------------------------------------------+
text Refers to the text for the option.
+-----------------+---------------------------------------------------------------+
value Refers to the value that is returned when the option
is selected.
+-----------------+---------------------------------------------------------------+
*/
|