How to show Term ID beside Name Category with wp_dropdown_categories()

You can add a custom hook to the functions.php for that:

function my_add_cat_id($category_name, $category) {
    return $category_name ." (ID-".$category->term_id.")";
}
add_filter('list_cats', 'my_add_cat_id', 10,2);