I have a select field like this in my costum magento admin form
$fieldset->addField(
'category_id',
'select',
array(
'id' => 'lazadaCategory',
'label' => Mage::helper('test_sellercenter')->__('Category '),
'name' => 'status',
'values' => Mage::helper('test_sellercenter/dropdown')->getLazadaCategories(),
'class' => 'required-entry',
)
);
and when the select value change i need to add another fields below this select field (not like toogle show/hide just add), for example like this field
$fieldset->addField(
'listing_name',
'text',
array(
'label' => Mage::helper('test_sellercenter')->__('Listing Name'),
'name' => 'listing_name',
'required' => true,
'class' => 'required-entry',
)
);
is there a way to do this in magento? for example like this add field example