How To Set 2 Dropdownlist In Same Row

how to set both dropdownlist in same row and I don’t like to use $form->deopDownList()




echo $form->textFieldRow($model,'C_name','', array());


echo $form->dropDownListRow( $model, 'C_time', $this->HH(), array('empty' => 'select',

        'ajax' => array(

            'type'=>'POST',

            'url'=>CController::createUrl('Customers/MM'),

            'update'=>'#Customers_drpMinute',

            'data'=>array('hour' => 'js:this.value'),

        ),'class'=>'input-small'

    )

);


echo " : ";


echo $form->dropDownListRow( $model, 'drpMinute',array('empty'=>'select'), array('class'=>'input-small'));