OK here is a quick go at it.....
first a template edit...
go to,
Styles and Templates->Style Manager->Your Style->Edit Templates->Registration Templates->register
Find:
Above it add this...
PHP Code:
<fieldset class="fieldset">
<legend>Account Type</legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="400">
<tr>
<td colspan="2">Type:</td>
</tr>
<tr>
<td>
Please choose the account type.<br />
<select name="accounttype">
<option value="2">Registered User</option>
<option value="5">SuperMod</option>
<option value="7">Moderator</option>
</select>
</td>
</table>
</fieldset>
Edit the 'value' and name of each option to correspond to the names and usergroup ID's you set up. Then save it.
Next take the plug-in I attached and open it up in a text editor.
Find:
PHP Code:
if(in_array($accountusergroupid,array(2,5,7))){
and replace the numbers 2,5,7 with the usergroup ID's that correspond to the usergroups you set up.
Then save and import the plug-in.