Dependent Dropdown With Default Select

I have a set of dependent dropdowns that work fine if I select each item in the hierarchy. The issue is if I provide a default selected item in the top dropdown, it selects properly, but does not create the ajax actions to cascade down to the rest of them. What is the best way to make this happen?

echo CHtml::dropDownList(‘id_category’, $findCategory, $categories, array(‘prompt’=>’—Select—’,

                                                    'ajax'=>array(


                                                    'type'=>'POST',


                                                    'url'=>yii::app()->createUrl(asset/AssetTypeData'),


                                                    'data'=>array('category'=>'js:jQuery(this).val()'),


                                                    'update'=>'#id_types',


                                                    )));

echo CHtml::dropDownList(‘id_types’, $findType, $findTypeArray, array(‘prompt’=>’—Select—’,

                                                   'ajax'=>array(


                                                   'type'=>'POST',


                                                   'url'=>yii::app()->createUrl('asset/AssetAttributeData'),


                                                   'data'=>array('type'=>'js:jQuery(this).val()'),


                                                   'update'=>'#assetGrid',


                                                   ))); 

etc.