<p>
On Fri, 28 Dec 2007 10:55:58 -0200, Alessandro Feij&oacute;  wrote:
<font face="Arial" size="2"></font>
</p>
<p>
<font face="Arial" size="2">&gt; I&#39;m manipulating dynamicaly the content of a 
Combobox</font>
<font face="Arial" size="2"><br />
&gt; It starts empty, I set the values with jQuery, and 
when I click Submit, an error say something like &#39;invalid content, contact your 
administrator&#39;</font><font face="Arial" size="2"><br />
&gt; There is any protection to prevent content 
different from the original possible values to an &lt;select&gt; ?</font>&nbsp; 
</p>
<p>
Yes there is.
<br />
You need to specify 
$form[&#39;your_select_element&#39;][&#39;#dangerous_skip_check&#39;] = TRUE;
<br />
You then need to perform your own server-side validation on the 
posted value, since this leaves your form open to&nbsp; invalid submissions.
<br />
<br />
Note that this flag has been removed from D6, where the recommended way is 
now to use FAPIs #ahah properties.&nbsp;
</p>