For Creating multiple select box without javascript, follow the below steps.

Your html code will be like below,
<select multiple="multiple" name="element[]">
<!– dont forge to name this element as array means like "element[ ]" otherwise it will show only one value in post/get–>
<option value="1"> 1 </option>
<option value="2"> 2 </option>
<option value="3"> 3 </option>
<option value="4"> 4 </option>
</select>
If I elect 1 and 4 here then, You will retrieve the data in post or get what you may be using as method as below.
$_POST["element"] = array( [0] => 1 [1] => 4 );
Cheers! Mehul.

rax rss Create multiple select box without javascript  rax twitter Create multiple select box without javascript  rax facebook Create multiple select box without javascript  rax myspace Create multiple select box without javascript