diff --git a/uc_varprice_show_arb.js b/uc_varprice_show_arb.js
index 7ca3865..8504b70 100644
--- a/uc_varprice_show_arb.js
+++ b/uc_varprice_show_arb.js
@@ -10,30 +10,30 @@ Drupal.behaviors.ucVarPriceShowArb = function(context) {
   if (varpriceSel.length) {
     // Using drop-down menu
     if (varpriceSel.val() !== 'other') {
-      $('#edit-varprice-arb-wrapper:not(.processed)').addClass('processed').hide();
+      $('#edit-varprice-wrapper:not(.processed)').addClass('processed').hide();
     }
     varpriceSel.change(function() {
       if ($(this).val() === 'other') {
-        $('#edit-varprice-arb-wrapper').show('fast');
-        $('#edit-varprice-arb').focus();
+        $('#edit-varprice-wrapper').show('fast');
+        $('#edit-varprice').focus();
       }
       else {
-        $('#edit-varprice-arb-wrapper').hide('fast');
+        $('#edit-varprice-wrapper').hide('fast');
       }
     });
   }
   else {
     // Using radio buttons
     if ($('input[name="varprice_sel"]:checked').val() !== 'other') {
-      $('#edit-varprice-arb-wrapper:not(.processed)').addClass('processed').hide();
+      $('#edit-varprice-wrapper:not(.processed)').addClass('processed').hide();
     }
     $('input[name="varprice_sel"]').change(function() {
       if ($('input[name="varprice_sel"]:checked').val() === 'other') {
-        $('#edit-varprice-arb-wrapper').show('fast');
-        $('#edit-varprice-arb').focus();
+        $('#edit-varprice-wrapper').show('fast');
+        $('#edit-varprice').focus();
       }
       else {
-        $('#edit-varprice-arb-wrapper').hide('fast');
+        $('#edit-varprice-wrapper').hide('fast');
       }
     });
   }
