dropdownlist

how to select multiple choice from dropdownlist in yii?

here’s my code:

[center]<div class="row">

		      &lt;div class=&quot;input_box&quot;&gt;


			        &lt;label&gt;&lt;?php echo &#036;form-&gt;labelEx(&#036;model,'fruit'); ?&gt;&lt;/label&gt;


			        &lt;?php echo &#036;form-&gt;dropDownList(&#036;model,'fruit',array('apple'=&gt;'apple','mango'=&gt;'mango','pineapple'=&gt;'pineapple')); ?&gt; 


					&lt;?php echo &#036;form-&gt;error(&#036;model,'fruit'); ?&gt; 


               &lt;/div&gt;


		 &lt;/div&gt;[/center]



 <?php echo $form->dropDownList($model,'fruit',

          array('apple'=>'apple','mango'=>'mango','pineapple'=>'pineapple'),

          array('size'=>'30')); ?>