/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke
ISBN: 067231763X
Publisher Sams CopyRight 2000
+------------+----------------+------------------------------------------+
Type Item Description
+------------+----------------+------------------------------------------+
Method
+------------+----------------+------------------------------------------+
blur() Removes the focus from the select box.
+------------+----------------+------------------------------------------+
focus() Gives the focus to the select box.
+------------+----------------+------------------------------------------+
handleEvent() Invokes the handler for the event specified;
was added in JavaScript 1.2.
+------------+----------------+------------------------------------------+
Property
+------------+----------------+------------------------------------------+
form Returns the entire form the select box is in.
+------------+----------------+------------------------------------------+
length Returns the number of options in the select box.
+------------+----------------+------------------------------------------+
name Returns the name of this select box, specified
by the name attribute.
+------------+----------------+------------------------------------------+
options Returns an array containing each of the items
in the select box. These items are created
using the 'option' HTML tag. There are also
length and selectedIndex subproperties of
this property.
+------------+----------------+------------------------------------------+
selectedIndex Returns an integer specifying the indexed
location of the selected option in the select box.
+------------+----------------+------------------------------------------+
type Returns the type of this select box specified
by the type attribute. For 'select' instances
that contain the multiple attribute, this
property returns select-multiple. Instances
without this attribute return select-one.
This property was added in JavaScript 1.1.
+------------+----------------+------------------------------------------+
*/
|