Index: wp-includes/default-widgets.php
===================================================================
--- wp-includes/default-widgets.php	(revision 21212)
+++ wp-includes/default-widgets.php	(working copy)
@@ -446,7 +446,7 @@
 
 	function widget( $args, $instance ) {
 		extract( $args );
-
+		$current_taxonomy = $this->_get_current_taxonomy( $instance );
 		$title = apply_filters('widget_title', empty( $instance['title'] ) ? __( 'Categories' ) : $instance['title'], $instance, $this->id_base);
 		$c = ! empty( $instance['count'] ) ? '1' : '0';
 		$h = ! empty( $instance['hierarchical'] ) ? '1' : '0';
@@ -456,10 +456,10 @@
 		if ( $title )
 			echo $before_title . $title . $after_title;
 
-		$cat_args = array('orderby' => 'name', 'show_count' => $c, 'hierarchical' => $h);
+		$cat_args = array('orderby' => 'name', 'show_count' => $c, 'hierarchical' => $h, 'taxonomy' => $current_taxonomy);
 
 		if ( $d ) {
-			$cat_args['show_option_none'] = __('Select Category');
+			$cat_args['show_option_none'] = __('Select ') . get_taxonomy( $current_taxonomy )->labels->singular_name;
 			wp_dropdown_categories(apply_filters('widget_categories_dropdown_args', $cat_args));
 ?>
 
@@ -496,6 +496,7 @@
 		$instance['count'] = !empty($new_instance['count']) ? 1 : 0;
 		$instance['hierarchical'] = !empty($new_instance['hierarchical']) ? 1 : 0;
 		$instance['dropdown'] = !empty($new_instance['dropdown']) ? 1 : 0;
+		$instance['taxonomy'] = stripslashes( $new_instance['taxonomy'] );
 
 		return $instance;
 	}
@@ -507,10 +508,22 @@
 		$count = isset($instance['count']) ? (bool) $instance['count'] :false;
 		$hierarchical = isset( $instance['hierarchical'] ) ? (bool) $instance['hierarchical'] : false;
 		$dropdown = isset( $instance['dropdown'] ) ? (bool) $instance['dropdown'] : false;
+		$current_taxonomy = $this->_get_current_taxonomy( $instance );
 ?>
 		<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title:' ); ?></label>
 		<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
 
+		<p><label for="<?php echo $this->get_field_id( 'taxonomy' ); ?>"><?php _e( 'Taxonomy:' ) ?></label>
+		<select class="widefat" id="<?php echo $this->get_field_id( 'taxonomy' ); ?>" name="<?php echo $this->get_field_name( 'taxonomy' ); ?>">
+		<?php foreach ( get_taxonomies() as $taxonomy ) :
+					$tax = get_taxonomy( $taxonomy );
+					if ( ! $tax->show_tagcloud || empty( $tax->labels->name ) )
+						continue;
+		?>
+		<option value="<?php echo esc_attr( $taxonomy ) ?>" <?php selected( $taxonomy, $current_taxonomy ) ?>><?php echo $tax->labels->name; ?></option>
+	<?php endforeach; ?>
+	</select></p>
+
 		<p><input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('dropdown'); ?>" name="<?php echo $this->get_field_name('dropdown'); ?>"<?php checked( $dropdown ); ?> />
 		<label for="<?php echo $this->get_field_id('dropdown'); ?>"><?php _e( 'Display as dropdown' ); ?></label><br />
 
@@ -522,6 +535,14 @@
 <?php
 	}
 
+	function _get_current_taxonomy($instance) {
+		if ( ! empty( $instance['taxonomy'] ) && taxonomy_exists( $instance['taxonomy'] ) )
+			return $instance['taxonomy'];
+
+		return 'categories';
+	}
+
+
 }
 
 /**
