with (classes) {
//
with (XHTML) {
//
with (Form) {
//
Form.Select = function ()
{
 with (XHTML.events) call(this);

 with (Select)
 {
  this.onfocus = onfocus;
  this.onblur = onblur;
  this.onchange = onchange;
 }

 return this;
}
//
Select.events =
{
 focus : "XHTML_Form_Select_focus",
 blur : "XHTML_Form_Select_blur",
 change : "XHTML_Form_Select_change"
}
//
Select.onfocus = function () { with (Select) with (this) { broadcast(events.focus); }}
//
Select.onblur = function () { with (Select) with (this) { broadcast(events.blur); }}
//
Select.onchange = function () { with (Select) with (this) { broadcast(events.change); }}
//
}
//
}
//
}

