I am rendering in my view a Zend_Form_Element_Select.
$t=new Zend_Form_Element_Select(....);
...
...
echo $t->render();
I get the drop down and the options correctly, but I also get the select element wrapped in
<dt> </dt>
<dd>[elm]</dd>
How do I remove that decorator?