HtmlRenderer html = new HtmlRenderer();
if (this.isEnabled()) {
html.select(this.getId(), this.getAttributes(), options, selectedIndex, false);
} else {
html.select("m_" + this.getId(), "DISABLED", options, selectedIndex, false);
html.inputHidden(this.getId(), getSelectedValue());
}
return html.toString();
}