Hi, well, Yn that case I will recommend something easier. You can change it in the registration/register.php(of the theme ) and members/single/profile/edit.php.
You will see the code as below
<?php if ( 'selectbox' == bp_get_the_profile_field_type() ) : ?>
below that change this
<select name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>">
<?php bp_the_profile_field_options() ?>
</select>
to
<select name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>">
<?php if( bp_get_the_profile_field_name()=="Test Box"):
//change the name to the field name you have addedd
?>
<optgroup label="Test Box">
<?php endif;?>
<?php bp_the_profile_field_options() ?>
<?php if( bp_get_the_profile_field_name()=="Test Box"):
//change the name to the field name you have addedd
?>
</optgroup>
<?php endif;?>
</select>
That will add the optgroup for specific fields but not all the select box