show Selected Value From DropdownList

I have a DropdownList.

After i select a value from this dropdownList, i want to show this value

How could i do?

Help me!

My DropdownList




<div class="row">

		<?php echo $form->labelEx($model,'nhap_thietbi'); ?>

                <?php echo $form->dropDownList($model, 'nhap_thietbi', CHtml::listData(Thietbi::model()->findAll(), 'thietbi_id', 'thietbi_ten')); ?>

		<?php echo $form->error($model,'nhap_thietbi'); ?>

	</div>




<?php print $_POST['nhap_thietbi']; ?>

Is this not working for you?


CHtml::dropDownlist('attentance','',array('Daily'=>'Daily','SubjectWise'=>'SubjectWise'),array('options'=>array($val_4->config_value=>array('selected'=>true)))); ?>

[/quote]