скопируйте config.xml
из /app/code/core/Mage/Customer/etc/
в app/code/local/Customer/etc/
и измените, как показано ниже (добавьте узел group_id):
<fieldset>
...
<customer_account>
<email><create>1</create><update>1</update></email>
<group_id><create>1</create><update>1</update></group_id>
<!-- add above line -->
</customer_account>
...
</fieldset>
Откройте register.phtml
из /app/design/frontend/[YOUR_TEMPLATE]/customer/form/
и добавьте куда-нибудь следующий блок кода, в котором должно появиться поле:
<div class="input-box">
<label for="group_id"><?php echo $this->__('Your customer group') ?>
<span class="required">*</span>
</label>
<select name="group_id" id="group_id" title="<?php echo $this->__('Customer Groups') ?>" class="validate-group required-entry input-text" />
<?php $groups = Mage::helper('customer')->getGroups()->toOptionArray(); ?>
<?php foreach($groups as $group){ ?>
<option value="<?php print $group['value'] ?>">
<?php print $group['label'] ?>
</option>
<?php } ?>
</select>
</div>