Hi this is a function to create selecy field in html form: function addSelect($name, $label, $default, &$options) { $this->_elements[$name] = array('type' => 'select', 'label' => $label, 'value' => $default, 'options' => $options); } PHP: I will use that function this way: $form->addSelect('accounttype', Your Account Type, '', &$options); PHP: and I want my options to be Egold and Paypal but how should i define my options? thanks