Custom Author Fields + Existing Taxonomy – Integrating the Two Dynamically?

Figured it out, for anyone who needs help with this I’m sure you can use with categories/tags as well (can also use with radio inputs and checked=”checked”:

<tr>
 <th><label for="sorority"><?php _e('Sorority is...') ?></label></th>
  <td><?php $sorority = get_the_author_meta( 'sorority', $user->ID ); ?>
    <select name="sorority" id="sorority">
    <?php $terms = get_terms('sorority'); foreach ( $terms as $term ) { ?>
    <option name="sorority" value="<?php echo $term->name; ?>" <?php if ( $sorority == $term->name ) {?> selected="selected" <?php }?>><?php echo $term->name; ?></option>
    <?php } ?>
    </select>
 </td> 
</tr>