Index: views_bulk_operations_plugin_style.inc
===================================================================
--- views_bulk_operations_plugin_style.inc	(revision 2570)
+++ views_bulk_operations_plugin_style.inc	(working copy)
@@ -13,6 +13,7 @@
     $options['display_type'] = array('default' => 0);
     $options['skip_confirmation'] = array('default' => FALSE);
     $options['display_result'] = array('default' => TRUE);
+    $options['operations_display_position'] = array('default' => 'above');
     $options['merge_single_action'] = array('default' => TRUE);
     $options['hide_select_all'] = array('default' => FALSE);
 
@@ -56,6 +57,15 @@
         t('Each action as a separate button'),
       ),
     );
+    $form['operations_display_position'] = array(
+      '#type' => 'radios',
+      '#title' => t('Where to display operations'),
+      '#default_value' => $this->options['operations_display_position'],
+      '#options' => array(
+        'above' => t('Above the results table'),
+        'below' => t('Below the results table'),
+      ),
+    );
     $form['hide_select_all'] = array(
       '#type' => 'checkbox',
       '#title' => t('Hide select all checkbox'),
Index: views_bulk_operations.module
===================================================================
--- views_bulk_operations.module	(revision 2571)
+++ views_bulk_operations.module	(working copy)
@@ -298,12 +298,9 @@
   
   switch ($step) {
     case VIEWS_BULK_OPS_STEP_VIEW:
-      $form['select'] = array(
-        '#type' => 'fieldset',
-        '#title' => t('Bulk operations'),
-        '#prefix' => '<div id="views-bulk-operations-select">',
-        '#suffix' => '</div>',             
-      );
+      if ($plugin->options['operations_display_position'] == 'above') {
+        $form['select'] = _views_bulk_operations_get_select_element();
+      }
       $form['objects'] = array(
         '#type' => 'views_node_selector',
         '#view' => $plugin->view,
@@ -312,6 +309,9 @@
         '#prefix' => '<div class="views-node-selector">',
         '#suffix' => '</div>',
       );
+      if ($plugin->options['operations_display_position'] == 'below') {
+        $form['select'] = _views_bulk_operations_get_select_element();
+      }
       if ($plugin->options['display_type'] == 0) {
         // Create dropdown and submit button.
         $form['select']['operation'] = array(
@@ -406,6 +406,18 @@
 }
 
 /**
+ * Helper function to return operations form select element
+ */
+function _views_bulk_operations_get_select_element() {
+  return array(
+    '#type' => 'fieldset',
+    '#title' => t('Bulk operations'),
+    '#prefix' => '<div id="views-bulk-operations-select">',
+    '#suffix' => '</div>',             
+  );  
+}
+
+/**
  * Implementation of hook_form_alter().
  *
  * Usability improvements to standard "Send e-mail" action.
