Index: src/includes/admin/metaboxes.php
===================================================================
--- src/includes/admin/metaboxes.php	(revision 5413)
+++ src/includes/admin/metaboxes.php	(working copy)
@@ -28,7 +28,7 @@
 		$text       = sprintf( _n( '%d Forum', '%d Forums', $r['forum_count'], 'bbpress' ), $r['forum_count'] );
 		$elements[] = '<a href="' . esc_url( $link ) . '" class="bbp-glance-forums">' . esc_html( $text ) . '</a>';
 	}
-	
+
 	// Topics
 	if ( current_user_can( 'publish_topics' ) ) {
 		$link       = add_query_arg( array( 'post_type' => bbp_get_topic_post_type() ), get_admin_url( null, 'edit.php' ) );
@@ -343,7 +343,7 @@
 
 	<p>
 		<strong class="label"><?php esc_html_e( 'Parent:', 'bbpress' ); ?></strong>
-		<label class="screen-reader-text" for="parent_id"><?php esc_html_e( 'Forum Parent', 'bbpress' ); ?></label>
+		<label class="screen-reader-text" for="bbp_forum_parent_id_select"><?php esc_html_e( 'Forum Parent', 'bbpress' ); ?></label>
 		<?php bbp_dropdown( array(
 			'post_type'          => bbp_get_forum_post_type(),
 			'selected'           => $post_parent,
@@ -354,7 +354,7 @@
 			'exclude'            => $post_id,
 
 			// Output-related
-			'select_id'          => 'parent_id',
+			'select_id'          => 'bbp_forum_parent_id_select',
 			'tab'                => bbp_get_tab_index(),
 			'options_only'       => false,
 			'show_none'          => __( '&mdash; No parent &mdash;', 'bbpress' ),
@@ -399,7 +399,7 @@
 
 	<p>
 		<strong class="label"><?php esc_html_e( 'Type:', 'bbpress' ); ?></strong>
-		<label class="screen-reader-text" for="bbp_stick_topic"><?php esc_html_e( 'Topic Type', 'bbpress' ); ?></label>
+		<label class="screen-reader-text" for="bbp_stick_topic_select"><?php esc_html_e( 'Topic Type', 'bbpress' ); ?></label>
 		<?php bbp_form_topic_type_dropdown( array( 'topic_id' => $post_id ) ); ?>
 	</p>
 
@@ -411,8 +411,8 @@
 
 	<p>
 		<strong class="label"><?php esc_html_e( 'Status:', 'bbpress' ); ?></strong>
-		<label class="screen-reader-text" for="bbp_open_close_topic"><?php esc_html_e( 'Select whether to open or close the topic.', 'bbpress' ); ?></label>
-		<?php bbp_form_topic_status_dropdown( array( 'select_id' => 'post_status', 'topic_id' => $post_id ) ); ?>
+		<label class="screen-reader-text" for="bbp_topic_status_select"><?php esc_html_e( 'Select what status to give the topic.', 'bbpress' ); ?></label>
+		<?php bbp_form_topic_status_dropdown( array( 'topic_id' => $post_id ) ); ?>
 	</p>
 
 	<?php
@@ -425,7 +425,7 @@
 
 	<p>
 		<strong class="label"><?php esc_html_e( 'Forum:', 'bbpress' ); ?></strong>
-		<label class="screen-reader-text" for="parent_id"><?php esc_html_e( 'Forum', 'bbpress' ); ?></label>
+		<label class="screen-reader-text" for="bbp_topic_forum_select"><?php esc_html_e( 'Forum', 'bbpress' ); ?></label>
 		<?php bbp_dropdown( array(
 			'post_type'          => bbp_get_forum_post_type(),
 			'selected'           => bbp_get_topic_forum_id( $post_id ),
@@ -436,7 +436,7 @@
 			'exclude'            => '',
 
 			// Output-related
-			'select_id'          => 'parent_id',
+			'select_id'          => 'bbp_topic_forum_select',
 			'tab'                => bbp_get_tab_index(),
 			'options_only'       => false,
 			'show_none'          => __( '&mdash; No parent &mdash;', 'bbpress' ),
@@ -480,8 +480,8 @@
 
 	<p>
 		<strong class="label"><?php esc_html_e( 'Status:', 'bbpress' ); ?></strong>
-		<label class="screen-reader-text" for="post_status"><?php esc_html_e( 'Select what status to give the reply.', 'bbpress' ); ?></label>
-		<?php bbp_form_reply_status_dropdown( array( 'select_id' => 'post_status', 'reply_id' => $post_id ) ); ?>
+		<label class="screen-reader-text" for="bbp_reply_status_select"><?php esc_html_e( 'Select what status to give the reply.', 'bbpress' ); ?></label>
+		<?php bbp_form_reply_status_dropdown( array( 'reply_id' => $post_id ) ); ?>
 	</p>
 
 	<hr />
@@ -495,7 +495,7 @@
 
 		<p>
 			<strong class="label"><?php esc_html_e( 'Forum:', 'bbpress' ); ?></strong>
-			<label class="screen-reader-text" for="bbp_forum_id"><?php esc_html_e( 'Forum', 'bbpress' ); ?></label>
+			<label class="screen-reader-text" for="bbp_reply_forum_select"><?php esc_html_e( 'Forum', 'bbpress' ); ?></label>
 			<?php bbp_dropdown( array(
 				'post_type'          => bbp_get_forum_post_type(),
 				'selected'           => $reply_forum_id,
@@ -506,7 +506,7 @@
 				'exclude'            => '',
 
 				// Output-related
-				'select_id'          => 'bbp_forum_id',
+				'select_id'          => 'bbp_reply_forum_select',
 				'tab'                => bbp_get_tab_index(),
 				'options_only'       => false,
 				'show_none'          => __( '&mdash; No parent &mdash;', 'bbpress' ),
@@ -523,7 +523,7 @@
 
 	<p>
 		<strong class="label"><?php esc_html_e( 'Topic:', 'bbpress' ); ?></strong>
-		<label class="screen-reader-text" for="parent_id"><?php esc_html_e( 'Topic', 'bbpress' ); ?></label>
+		<label class="screen-reader-text" for="bbp_topic_id"><?php esc_html_e( 'Topic', 'bbpress' ); ?></label>
 		<input name="parent_id" id="bbp_topic_id" type="text" value="<?php echo esc_attr( $reply_topic_id ); ?>" />
 	</p>
 
@@ -535,7 +535,7 @@
 
 	<p>
 		<strong class="label"><?php esc_html_e( 'Reply To:', 'bbpress' ); ?></strong>
-		<label class="screen-reader-text" for="bbp_reply_to"><?php esc_html_e( 'Reply To', 'bbpress' ); ?></label>
+		<label class="screen-reader-text" for="bbp_reply_to_select"><?php esc_html_e( 'Reply To', 'bbpress' ); ?></label>
 		<?php bbp_reply_to_dropdown( $post_id ); ?>
 	</p>
 
Index: src/includes/replies/template.php
===================================================================
--- src/includes/replies/template.php	(revision 5413)
+++ src/includes/replies/template.php	(working copy)
@@ -2541,7 +2541,7 @@
 		// Get the dropdown and return it
 		$retval = bbp_get_dropdown( array(
 			'show_none'    => sprintf( esc_attr__( '%1$s - %2$s', 'bbpress' ), $topic_id, bbp_get_topic_title( $topic_id ) ),
-			'select_id'    => 'bbp_reply_to',
+			'select_id'    => 'bbp_reply_to_select',
 			'exclude'      => $reply_id,
 			'selected'     => $reply_to,
 			'post_parent'  => $topic_id,
Index: src/templates/default/bbpress/form-forum.php
===================================================================
--- src/templates/default/bbpress/form-forum.php	(revision 5413)
+++ src/templates/default/bbpress/form-forum.php	(working copy)
@@ -88,7 +88,7 @@
 					<?php do_action( 'bbp_theme_before_forum_form_type' ); ?>
 
 					<p>
-						<label for="bbp_forum_type"><?php _e( 'Forum Type:', 'bbpress' ); ?></label><br />
+						<label for="bbp_forum_type_select"><?php _e( 'Forum Type:', 'bbpress' ); ?></label><br />
 						<?php bbp_form_forum_type_dropdown(); ?>
 					</p>
 
@@ -97,7 +97,7 @@
 					<?php do_action( 'bbp_theme_before_forum_form_status' ); ?>
 
 					<p>
-						<label for="bbp_forum_status"><?php _e( 'Status:', 'bbpress' ); ?></label><br />
+						<label for="bbp_forum_status_select"><?php _e( 'Status:', 'bbpress' ); ?></label><br />
 						<?php bbp_form_forum_status_dropdown(); ?>
 					</p>
 
@@ -106,7 +106,7 @@
 					<?php do_action( 'bbp_theme_before_forum_visibility_status' ); ?>
 
 					<p>
-						<label for="bbp_forum_visibility"><?php _e( 'Visibility:', 'bbpress' ); ?></label><br />
+						<label for="bbp_forum_visibility_select"><?php _e( 'Visibility:', 'bbpress' ); ?></label><br />
 						<?php bbp_form_forum_visibility_dropdown(); ?>
 					</p>
 
@@ -115,11 +115,11 @@
 					<?php do_action( 'bbp_theme_before_forum_form_parent' ); ?>
 
 					<p>
-						<label for="bbp_forum_parent_id"><?php _e( 'Parent Forum:', 'bbpress' ); ?></label><br />
+						<label for="bbp_forum_parent_id_select"><?php _e( 'Parent Forum:', 'bbpress' ); ?></label><br />
 
 						<?php
 							bbp_dropdown( array(
-								'select_id' => 'bbp_forum_parent_id',
+								'select_id' => 'bbp_forum_parent_id_select',
 								'show_none' => __( '(No Parent)', 'bbpress' ),
 								'selected'  => bbp_get_form_forum_parent(),
 								'exclude'   => bbp_get_forum_id()
Index: src/templates/default/bbpress/form-topic.php
===================================================================
--- src/templates/default/bbpress/form-topic.php	(revision 5413)
+++ src/templates/default/bbpress/form-topic.php	(working copy)
@@ -111,9 +111,10 @@
 						<?php do_action( 'bbp_theme_before_topic_form_forum' ); ?>
 
 						<p>
-							<label for="bbp_forum_id"><?php _e( 'Forum:', 'bbpress' ); ?></label><br />
+							<label for="bbp_forum_id_select"><?php _e( 'Forum:', 'bbpress' ); ?></label><br />
 							<?php
 								bbp_dropdown( array(
+									'select_id' => 'bbp_forum_id_select',
 									'show_none' => __( '(No Forum)', 'bbpress' ),
 									'selected'  => bbp_get_form_topic_forum()
 								) );
@@ -130,7 +131,7 @@
 
 						<p>
 
-							<label for="bbp_stick_topic"><?php _e( 'Topic Type:', 'bbpress' ); ?></label><br />
+							<label for="bbp_stick_topic_select"><?php _e( 'Topic Type:', 'bbpress' ); ?></label><br />
 
 							<?php bbp_form_topic_type_dropdown(); ?>
 
@@ -142,7 +143,7 @@
 
 						<p>
 
-							<label for="bbp_topic_status"><?php _e( 'Topic Status:', 'bbpress' ); ?></label><br />
+							<label for="bbp_topic_status_select"><?php _e( 'Topic Status:', 'bbpress' ); ?></label><br />
 
 							<?php bbp_form_topic_status_dropdown(); ?>
 
