<div style="display: block;" id="mnu_type">
<ul>
<?php
$args = array(
'show_option_all' => '',
'orderby' => 'ID',
'order' => 'ASC',
'style' => 'list',
'show_count' => 1,
'hide_empty' => 0,
'use_desc_for_title' => 1,
'child_of' => 0,
'hierarchical' => true,
'title_li' => '',
'show_option_none' => __('No Directory Orgs'),
'number' => NULL,
'echo' => 1,
'depth' => 0,
'current_category' => 0,
'pad_counts' => 1,
'taxonomy' => 'your_taxonomy_name',
'walker' => 'Walker_Category' );
wp_list_categories($args); ?>
</ul>
</div>