diff --git a/uc_order/uc_order.order_pane.inc b/uc_order/uc_order.order_pane.inc
index 3c7451d..af6ed9e 100644
--- a/uc_order/uc_order.order_pane.inc
+++ b/uc_order/uc_order.order_pane.inc
@@ -38,12 +38,11 @@ function uc_order_pane_ship_to($op, $order, &$form = NULL, &$form_state = NULL)
                 . '/images/address_book.gif" alt="' . t('Select from address book.') . '" '
                 . 'title="' . t('Select from address book.') . '" onclick="load_address_select(' . $form['order_uid']['#value'] . ', \'#delivery_address_select\', \'delivery\');" '
                 . 'style="position: relative; top: 2px; cursor: pointer;" />';
-
       $output .= ' <img src="' . base_path() . drupal_get_path('module', 'uc_store')
                  . '/images/copy.gif" alt="' . t('Copy billing information.') . '" title="'
                  . t('Copy billing information.') . '" onclick="uc_order_copy_billing_to_shipping();" '
                  . 'style="position: relative; top: 2px; cursor: pointer;" />';
-
+      $output .= '<div id="delivery_address_select"></div>';
       return $output;
 
     case 'edit-theme':
@@ -90,6 +89,7 @@ function uc_order_pane_bill_to($op, $order, &$form = NULL, &$form_state = NULL)
                . '/images/copy.gif" alt="' . t('Copy shipping information.') . '" title="'
                . t('Copy shipping information.') . '" onclick="uc_order_copy_shipping_to_billing();" '
                . 'style="position: relative; top: 2px; cursor: pointer;" />';
+      $output .= '<div id="billing_address_select"></div>';
       return $output;
 
     case 'edit-theme':
