I got it to work by changing
$output.= "\t" . '<option' . ' class="' . esc_attr( $class_name ) . '" value="' . esc_url( $url ) . '">' . esc_html( $text ) . '</option>' . "\n";
to
$output.= "\t" . '<option' . ' class="' . esc_attr( $class_name ) . '" value="' . $term->slug . '">' . esc_html( $text ) . '</option>' . "\n";
The table name is hard coded as wp_stoutgc, so won’t work if you have a different prefix, including MU installations. Need to change the code to get the prefix from ($wpdb->prefix). Thanks for the nice plugin, though.