Populating dropdown menu with hierarchical taxonomies

Sounds like you want wp_dropdown_categories() to me:

$tax_args = array(
  'taxonomy'     => 'location',
  'orderby'      => 'name',
  'show_count'   => 1,
  'hierarchical' => 1,
);
wp_dropdown_categories($tax_args);