// When the document is ready
if (jQuery) {  jQuery(function() {
    
    // Attach a change function to the <select> element
    jQuery('[name=my-item-choose]').change(function() {
      
      var form = jQuery(this).parents('form');
        
        // Size is whatever the value the user has selected
        var size = jQuery(this).val();
        
        var price,
            itemId;

        // Determine the correct price and item ID based on the selected size
        switch (size) {
	  /* 
=========== JAVASCRIPT=====
	   * 
        case 'DropdownOne-ProductA': // This needs to match the value attribute in the <option> tag
            price = '4.00';
            itemId = 'D1PA';
	    name = 'Product A Name Here';
            break;
        case 'DropdownOne-ProductB':
            price = '189.00';
            itemId = 'D1PB';
	    name = 'Product B Name Here';
            break;

        case 'DropdownTwo-ProductA':
            price = '189.00';
            itemId = 'D2PA';
	    name = 'Product A Name Here';
            break;
        case 'DropdownTwo-ProductB':
            price = '189.00';
            itemId = 'D2PB';
	    name = 'Product B Data Here';
            break;
	    
============CMS=====

<form method="post" action="index-cartcode.php" class="jcart">
  <input name="my-item-id" value="D1PA" type="hidden"> <!-- insert data for default item -->
<input name="my-item-name" value="Product A Name Here" type="hidden"> 
<input name="my-item-qty" value="1" type="hidden">
 <input name="my-item-price" value="30" type="hidden"> <!-- insert Product A price here -->
 <input name="my-item-url" value="http://www.have1.com/index.php?p=EcoBannerStandsTest" type="hidden"> 
<input name="my-item-desc" value="SPECIAL: Banner Stand With Graphics = $189 each" type="hidden"> <!-- Not yet implemented -->

<select name="my-item-choose" class="styled">
<option value="DropdownOne-ProductA">Product A  Name Here</option>
<option value="DropdownOne-ProductB">Product B Name Here</option>
</select> 
<input name="my-add-button" value="add" class="my-add-button" type="submit"></form>  


<form method="post" action="index-cartcode.php" class="jcart">
  <input name="my-item-id" value="D2PA" type="hidden"> 
<input name="my-item-name" value="Product A Name Here" type="hidden"> 
<input name="my-item-qty" value="1" type="hidden">
 <input name="my-item-price" value="30" type="hidden"> <!-- insert Product A price here -->
 <input name="my-item-url" value="http://www.have1.com/index.php?p=EcoBannerStandsTest" type="hidden"> 
<input name="my-item-desc" value="SPECIAL: Banner Stand With Graphics = $189 each" type="hidden"> <!-- Not yet implemented -->

<select name="my-item-choose" class="styled">
<option value="DropdownTwo-ProductA">Product A  Name Here</option>
<option value="DropdownTwo-ProductB">Product B Name Here</option>
</select> 
<input name="my-add-button" value="add" class="my-add-button" type="submit"></form>  

	    */
        case 'ODM-ECOB24_A': // This needs to match the value attribute in the <option> tag
            price = '189.00';
            itemId = 'ODM-ECOB24_A';
	    name = 'Eco-Small Banner Stand with graphics';
	    enabled = 'yes';
            break;
        case 'ODM-ECOB24_B':
            price = '10.00';
            itemId = 'ODM-ECOB24_B';
	    name = 'not being used';
	    enabled = 'no';
            break;

        case 'PD-ECOB3379_A':
            price = '199.00';
            itemId = 'PD-ECOB3379_A';
	    name = 'Eco-Medium Banner Stand with graphics - qty of 3 and more for special pricing';
	    	    enabled = 'yes';
            break;
        case 'PD-ECOB3379_B':
            price = '259.00';
            itemId = 'PD-ECOB3379_B';
	    name = 'Eco-Medium Banner Stand with graphics - qty of 1 or 2 at regular price';
	    	    enabled = 'yes';
            break;
            
            case 'PD-ECOB3379_C':
            price = '69.00';
            itemId = 'PD-ECOB3379_C';
	    name = 'Eco-Medium Banner Stand - Hardware only';
	    	    enabled = 'yes';
            break;
            
                  case 'PD-ECOB3979_A':
            price = '309.00';
            itemId = 'PD-ECOB3979_A';
	    name = 'Eco-Large Banner Stand with graphics';
	    	    enabled = 'yes';
            break;
            
             case 'PD-ECOB3979_B':
            price = '99.00';
            itemId = 'PD-ECOB3979_B';
	    name = 'Eco-Large Banner Stand - Hardware only';
	    	    enabled = 'yes';
            break;
            
            case 'ODM-ECOB48_A': 
            price = '389.00';
            itemId = 'ODM-ECOB48_A';
	    name = 'Eco-Extra Large Banner Stand with graphics';
	    enabled = 'yes';
	    
            break;
        case 'ODM-ECOB48_B':
            price = '10.00';
            itemId = 'ODM-ECOB48_B';
	    name = 'not being used';
	    enabled = 'no';
            break;
            
                    case 'UD-PAC800_A':
            price = '309.00';
            itemId = 'UD-PAC800_A';
	    name = 'Pacific Regular with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-PAC800_B':
            price = '369.00';
            itemId = 'UD-PAC800_B';
	    name = 'Pacific Regular with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-PAC800_C':
            price = '119.00';
            itemId = 'UD-PAC800_C';
	    name = 'Pacific Regular banner stand hardware only';
	    enabled = 'yes';
            break;
            
                   case 'UD-PAC800_D':
            price = '119.00';
            itemId = 'UD-PAC800_D';
	    name = 'Pacific Regular banner stand hardware only';
	    enabled = 'no';
            break;
            
                    case 'UD-PAC920_A':
            price = '319.00';
            itemId = 'UD-PAC920_A';
	    name = 'Pacific Medium with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-PAC920_B':
            price = '379.00';
            itemId = 'UD-PAC920_B';
	    name = 'Pacific Medium with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-PAC920_C':
            price = '129.00';
            itemId = 'UD-PAC920_C';
	    name = 'Pacific Medium banner stand hardware only';
	    enabled = 'yes';
            break;
            
                   case 'UD-PAC920_D':
            price = '119.00';
            itemId = 'UD-PAC920_D';
	    name = 'Pacific Medium banner stand hardware only';
	    enabled = 'no';
            break;
            
                                case 'UD-PAC1000_A':
            price = '399.00';
            itemId = 'UD-PAC1000_A';
	    name = 'Pacific Grande with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-PAC1000_B':
            price = '459.00';
            itemId = 'UD-PAC1000_B';
	    name = 'Pacific Grande with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-PAC1000_C':
            price = '149.00';
            itemId = 'UD-PAC1000_C';
	    name = 'Pacific Grande banner stand hardware only';
	    enabled = 'yes';
            break;
            
                   case 'UD-PAC1000_D':
            price = '149.00';
            itemId = 'UD-PAC1000_D';
	    name = 'Pacific Grande banner stand hardware only';
	    enabled = 'no';
            break;
            
                                            case 'UD-ONT-800_A':
            price = '329.00';
            itemId = 'UD-ONT-800_A';
	    name = 'Orient Regular with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-ONT-800_B':
            price = '399.00';
            itemId = 'UD-ONT-800_B';
	    name = 'Orient Regular with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-ONT-800_C':
            price = '139.00';
            itemId = 'UD-ONT-800_C';
	    name = 'Orient Regular banner stand hardware only';
	    enabled = 'yes';
            break;
            
                   case 'UD-ONT-800_D':
            price = '139.00';
            itemId = 'UD-ONT-800_D';
	    name = 'Orient Regular banner stand hardware only';
	    enabled = 'no';
            break;
            
                                              case 'UD-ONT-800DBL_A':
            price = '579.00';
            itemId = 'UD-ONT-800DBL_A';
	    name = 'Orient Regular Double-Sided with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-ONT-800DBL_B':
            price = '719.00';
            itemId = 'UD-ONT-800DBL_B';
	    name = 'Orient Regular Double-Sided with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-ONT-800DBL_C':
            price = '199.00';
            itemId = 'UD-ONT-800DBL_C';
	    name = 'Orient Regular Double-Sided banner stand hardware only';
	    enabled = 'yes';
            break;
            
                   case 'UD-ONT-800DBL_D':
            price = '199.00';
            itemId = 'UD-ONT-800DBL_D';
	    name = 'Orient Regular Double-Sided banner stand hardware only';
	    enabled = 'no';
            break;
            
                                       case 'UD-ONT-920_A':
            price = '349.00';
            itemId = 'UD-ONT-920_A';
	    name = 'Orient Medium with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-ONT-920_B':
            price = '409.00';
            itemId = 'UD-ONT-920_B';
	    name = 'Orient Medium with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-ONT-920_C':
            price = '159.00';
            itemId = 'UD-ONT-920_C';
	    name = 'Orient Medium banner stand hardware only';
	    enabled = 'yes';
            break;
            
                   case 'UD-ONT-920_D':
            price = '159.00';
            itemId = 'UD-ONT-920_D';
	    name = 'Orient Medium banner stand hardware only';
	    enabled = 'no';
            break;
            
                                                          case 'UD-ONT-920DBL_A':
            price = '599.00';
            itemId = 'UD-ONT-920DBL_A';
	    name = 'Orient Medium Double-Sided with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-ONT-920DBL_B':
            price = '729.00';
            itemId = 'UD-ONT-920DBL_B';
	    name = 'Orient Medium Double-Sided with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-ONT-920DBL_C':
            price = '219.00';
            itemId = 'UD-ONT-920DBL_C';
	    name = 'Orient Medium Double-Sided banner stand hardware only';
	    enabled = 'yes';
            break;
            
                   case 'UD-ONT-920DBL_D':
            price = '219.00';
            itemId = 'UD-ONT-920DBL_D';
	    name = 'Orient Medium Double-Sided banner stand hardware only';
	    enabled = 'no';
            break;
            
            
               case 'UD-ONT-1000_A':
            price = '429.00';
            itemId = 'UD-ONT-1000_A';
	    name = 'Orient Grande with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-ONT-1000_B':
            price = '489.00';
            itemId = 'UD-ONT-1000_B';
	    name = 'Orient Grande with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-ONT-1000_C':
            price = '179.00';
            itemId = 'UD-ONT-1000_C';
	    name = 'Orient Grande banner stand hardware only';
	    enabled = 'yes';
            break;
            
                   case 'UD-ONT-1000_D':
            price = '179.00';
            itemId = 'UD-ONT-1000_D';
	    name = 'Orient Grande banner stand hardware only';
	    enabled = 'no';
            break;
            
                                                                   case 'UD-ONT-1000DBL_A':
            price = '739.00';
            itemId = 'UD-ONT-1000DBL_A';
	    name = 'Orient Grande Double-Sided with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-ONT-1000DBL_B':
            price = '859.00';
            itemId = 'UD-ONT-1000DBL_B';
	    name = 'Orient Grande Double-Sided with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-ONT-1000DBL_C':
            price = '239.00';
            itemId = 'UD-ONT-1000DBL_C';
	    name = 'Orient Grande Double-Sided banner stand hardware only';
	    enabled = 'yes';
            break;
            
                   case 'UD-ONT-1000DBL_D':
            price = '239.00';
            itemId = 'UD-ONT-1000DBL_D';
	    name = 'Orient Grande Double-Sided banner stand hardware only';
	    enabled = 'no';
            break;
            
            
                                                                        case 'PD-SU33TC_A':
            price = '449.00';
            itemId = 'PD-SU33TC_A';
	    name = 'Supreme 1 33&quot; Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'PD-SU33TC_B':
            price = '509.00';
            itemId = 'PD-SU33TC_B';
	    name = 'Supreme 1 33&quot; Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'PD-SU33TC_C':
            price = '249.00';
            itemId = 'PD-SU33TC_C';
	    name = 'Supreme 1 33&quot; banner stand hardware only';
	    enabled = 'yes';
            break;
            
                   case 'PD-SU33TC_D':
            price = '249.00';
            itemId = 'PD-SU33TC_D';
	    name = 'Supreme 1&quot; inch banner stand hardware only';
	    enabled = 'no';
            break;
            
            
                                                                                 case 'PD-SU233C_A':
            price = '699.00';
            itemId = 'PD-SU233C_A';
	    name = 'Supreme 2 33&quot; Double-Sided Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'PD-SU233C_B':
            price = '819.00';
            itemId = 'PD-SU233C_B';
	    name = 'Supreme 2 33&quot; Double-Sided Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'PD-SU233C_C':
            price = '299.00';
            itemId = 'PD-SU233C_C';
	    name = 'Supreme 2 33&quot; Double-Sided Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'PD-SU233C_D':
            price = '299.00';
            itemId = 'PD-SU233C_D';
	    name = 'Supreme 2 33&quot; Double-Sided banner stand hardware only';
	    enabled = 'no';
            break;
            
            
            case 'PD-SU39TC_A':
            price = '539.00';
            itemId = 'PD-SU39TC_A';
	    name = 'Supreme 1 39&quot; Single-Sided Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'PD-SU39TC_B':
            price = '599.00';
            itemId = 'PD-SU39TC_B';
	    name = 'Supreme 1 39&quot; Single-Sided Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'PD-SU39TC_C':
            price = '269.00';
            itemId = 'PD-SU39TC_C';
	    name = 'Supreme 1 39&quot; Single-Sided Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'PD-SU39TC_D':
            price = '269.00';
            itemId = 'PD-SU39TC_D';
	    name = 'Supreme 1 39&quot; Single-Sided banner stand hardware only';
	    enabled = 'no';
            break;
            
            case 'PD-SU239C_A':
            price = '879.00';
            itemId = 'PD-SU239C_A';
	    name = 'Supreme 2 39&quot; Double-Sided Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'PD-SU239C_B':
            price = '999.00';
            itemId = 'PD-SU239C_B';
	    name = 'Supreme 2 39&quot; Double-Sided Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'PD-SU239C_C':
            price = '339.00';
            itemId = 'PD-SU239C_C';
	    name = 'Supreme 2 39&quot; Double-Sided Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'PD-SU239C_D':
            price = '339.00';
            itemId = 'PD-SU239C_D';
	    name = 'Supreme 2 39&quot; Double-Sided banner stand hardware only';
	    enabled = 'no';
            break;
            
                        case 'PD-SU47TC_A':
            price = '569.00';
            itemId = 'PD-SU47TC_A';
	    name = 'Supreme 1 47&quot; Single-Sided Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'PD-SU47TC_B':
            price = '629.00';
            itemId = 'PD-SU47TC_B';
	    name = 'Supreme 1 47&quot; Single-Sided Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'PD-SU47TC_C':
            price = '299.00';
            itemId = 'PD-SU47TC_C';
	    name = 'Supreme 1 47&quot; Single-Sided Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'PD-SU47TC_D':
            price = '299.00';
            itemId = 'PD-SU47TC_D';
	    name = 'Supreme 1 47&quot; Single-Sided banner stand hardware only';
	    enabled = 'no';
            break;
            
                        
                        case 'UD-ELEVATE_A':
            price = '395.00';
            itemId = 'UD-ELEVATE_A';
	    name = 'Elevate Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-ELEVATE_B':
            price = '455.00';
            itemId = 'UD-ELEVATE_B';
	    name = 'Elevate Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-ELEVATE_C':
            price = '169.00';
            itemId = 'UD-ELEVATE_C';
	    name = 'Elevate Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'UD-ELEVATE_D':
            price = '169.00';
            itemId = 'UD-ELEVATE_D';
	    name = 'Elevate banner stand hardware only';
	    enabled = 'no';
            break;
            
                                 case 'UD-BLD-LX-GRY_A':
            price = '389.00';
            itemId = 'UD-BLD-LX-GRY_A';
	    name = 'Blade LX Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-BLD-LX-GRY_B':
            price = '449.00';
            itemId = 'UD-BLD-LX-GRY_B';
	    name = 'Blade LX Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-BLD-LX-GRY_C':
            price = '199.00';
            itemId = 'UD-BLD-LX-GRY_C';
	    name = 'Blade LX Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'UD-BLD-LX-GRY_D':
            price = '199.00';
            itemId = 'UD-BLD-LX-GRY_D';
	    name = 'Blade LX banner stand hardware only';
	    enabled = 'no';
            break;
            
              case 'UD-ORCHID_A':
            price = '359.00';
            itemId = 'UD-ORCHID_A';
	    name = 'Orchid Bamboo Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-ORCHID_B':
            price = '419.00';
            itemId = 'UD-ORCHID_B';
	    name = 'Orchid Bamboo Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-ORCHID_C':
            price = '169.00';
            itemId = 'UD-ORCHID_C';
	    name = 'Orchid Bamboo Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'UD-ORCHID_D':
            price = '169.00';
            itemId = 'UD-ORCHID_D';
	    name = 'Orchid Bamboo banner stand hardware only';
	    enabled = 'no';
            break;
            
                  case 'UD-BCD_A':
            price = '379.00';
            itemId = 'UD-BCD_A';
	    name = 'Barracuda Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-BCD_B':
            price = '439.00';
            itemId = 'UD-BCD_B';
	    name = 'Barracuda Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-BCD_C':
            price = '189.00';
            itemId = 'UD-BCD_C';
	    name = 'Barracuda Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'UD-BCD_D':
            price = '189.00';
            itemId = 'UD-BCD_D';
	    name = 'Barracuda banner stand hardware only';
	    enabled = 'no';
            break;
            
                              case 'UD-EXC_A':
            price = '629.00';
            itemId = 'UD-EXC_A';
	    name = 'Excalibur Double-Sided Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-EXC_B':
            price = '749.00';
            itemId = 'UD-EXC_B';
	    name = 'Excalibur Double-Sided Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-EXC_C':
            price = '249.00';
            itemId = 'UD-EXC_C';
	    name = 'Excalibur Double-Sided Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'UD-EXC_D':
            price = '249.00';
            itemId = 'UD-EXC_D';
	    name = 'Excalibur Double-Sided banner stand hardware only';
	    enabled = 'no';
            break;
            
            
             case 'EX-PAL4_A':
            price = '419.00';
            itemId = 'EX-PAL4_A';
	    name = 'Presenter 4 Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'EX-PAL4_B':
            price = '479.00';
            itemId = 'EX-PAL4_B';
	    name = 'Presenter 4 Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'EX-PAL4_C':
            price = '229.00';
            itemId = 'EX-PAL4_C';
	    name = 'Presenter 4 Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'EX-PAL4_D':
            price = '229.00';
            itemId = 'EX-PAL4_D';
	    name = 'Presenter 4 banner stand hardware only';
	    enabled = 'no';
            break;
            
                case 'EX-PALJR_A':
            price = '295.00';
            itemId = 'EX-PALJR_A';
	    name = 'Presenter 2 Junior Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
                   case 'EX-PALJR_B':
            price = '259.00';
            itemId = 'EX-PALJR_B';
	    name = 'Presenter 2 Junior - Order Multiples of 2 Economy Graphics & Hardware';
	    enabled = 'yes';
            break;
            
        case 'EX-PALJR_C':
            price = '355.00';
            itemId = 'EX-PALJR_C';
	    name = 'Presenter 2 Junior Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
                case 'EX-PALJR_D':
            price = '319.00';
            itemId = 'EX-PALJR_D';
	    name = 'Presenter 2 Junior - Order multiples of 2 Premium Graphics & Hardware';
	    enabled = 'yes';
            break;
            
              case 'EX-PALJR_E':
            price = '159.00';
            itemId = 'EX-PALJR_E';
	    name = 'Presenter 2 Junior Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'EX-PALJR_F':
            price = '159.00';
            itemId = 'EX-PALJR_F';
	    name = 'Presenter 2 Junior banner stand hardware only';
	    enabled = 'no';
            break;
            
                         case 'EX-PAL2_A':
            price = '435.00';
            itemId = 'EX-PAL2_A';
	    name = 'Presenter 2 Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'EX-PAL2_B':
            price = '495.00';
            itemId = 'EX-PAL2_B';
	    name = 'Presenter 2 Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'EX-PAL2_C':
            price = '245.00';
            itemId = 'EX-PAL2_C';
	    name = 'Presenter 2 Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'EX-PAL2_D':
            price = '245.00';
            itemId = 'EX-PAL2_D';
	    name = 'Presenter 2 banner stand hardware only';
	    enabled = 'no';
            break;
            
               case 'EX-PALBIG2_A':
            price = '531.00';
            itemId = 'EX-PALBIG2_A';
	    name = 'Presenter 2 Big Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'EX-PALBIG2_B':
            price = '659.00';
            itemId = 'EX-PALBIG2_B';
	    name = 'Presenter 2 Big Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'EX-PALBIG2_C':
            price = '275.00';
            itemId = 'EX-PALBIG2_C';
	    name = 'Presenter 2 Big Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                   case 'EX-PALBIG2_D':
            price = '275.00';
            itemId = 'EX-PALBIG2_D';
	    name = 'Presenter 2 Big banner stand hardware only';
	    enabled = 'no';
            break;

                  case 'UD-IMG800_A':
            price = '435.00';
            itemId = 'UD-IMG800_A';
	    name = 'Imagine Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-IMG800_B':
            price = '495.00';
            itemId = 'UD-IMG800_B';
	    name = 'Imagine Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-IMG800_C':
            price = '245.00';
            itemId = 'UD-IMG800_C';
	    name = 'Imagine Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                        case 'UD-IMG800_D':
            price = '99.00';
            itemId = 'UD-IMG800_D';
	    name = 'Imagine Banner Stand Spare Cassette with top rail and bag';
	    enabled = 'yes';
            break;
            
                   case 'UD-IMG800_E':
            price = '245.00';
            itemId = 'UD-IMG800_E';
	    name = 'Imagine banner stand hardware only';
	    enabled = 'no';
            break;
            
                              case 'UD-ADV_A':
            price = '725.00';
            itemId = 'UD-ADV_A';
	    name = 'Advance Double-Sided Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-ADV_B':
            price = '845.00';
            itemId = 'UD-ADV_B';
	    name = 'Advance Double-Sided Banner Stand with Premium No-Curl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-ADV_C':
            price = '345.00';
            itemId = 'UD-ADV_C';
	    name = 'Advance Double-Sided Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
                          case 'UD-ADV_D':
            price = '99.00';
            itemId = 'UD-ADV_D';
	    name = 'Advance Double-Sided Banner Stand Spare Cassette with top rail and bag';
	    enabled = 'yes';
            break;
                   case 'UD-ADV_E':
            price = '345.00';
            itemId = 'UD-ADV_E';
	    name = 'Advance Double-Sided banner stand hardware only';
	    enabled = 'no';
            break;


                              case 'UD-CN-24_A':
            price = '315.00';
            itemId = 'UD-CN-24_A';
	    name = '77.5&quot; high Contender Mini Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-CN-24_B':
            price = '279.00';
            itemId = 'UD-CN-24_B';
	    name = '77.5&quot; high Contender Mini Banner Stand with Economy Vinyl Graphics when purchasing multiples of 2';
	    enabled = 'yes';
            break;
            
              case 'UD-CN-24_C':
            price = '369.00';
            itemId = 'UD-CN-24_C';
	    name = '105&quot; high Contender Mini Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
                          case 'UD-CN-24_D':
            price = '319.00';
            itemId = 'UD-CN-24_D';
	    name = '105&quot; high Contender Mini Banner Stand with Economy Vinyl Graphics when purchasing multiples of 2';
	    enabled = 'yes';
            break;
                   case 'UD-CN-24_E':
            price = '375.00';
            itemId = 'UD-CN-24_E';
	    name = '77.5&quot; high Contender Mini Banner Stand with Premium Vinyl Graphics';
	    enabled = 'yes';
            break;

                   case 'UD-CN-24_F':
            price = '339.00';
            itemId = 'UD-CN-24_F';
	    name = '77.5&quot; high Contender Mini Banner Stand with Premium Vinyl Graphics when purchasing multiples of 2';
	    enabled = 'yes';
            break;
            
                               case 'UD-CN-24_G':
            price = '429.00';
            itemId = 'UD-CN-24_G';
	    name = '105&quot; high Contender Mini Banner Stand with Premium Vinyl Graphics';
	    enabled = 'yes';
            break;
            
                               case 'UD-CN-24_H':
            price = '389.00';
            itemId = 'UD-CN-24_H';
	    name = '105&quot; high Contender Mini Banner Stand with Premium Vinyl Graphics when purchasing multiples of 2';
	    enabled = 'yes';
            break;
            
                               case 'UD-CN-24_I':
            price = '179.00';
            itemId = 'UD-CN-24_I';
	    name = 'Contender Mini Banner Stand hardware only';
	    enabled = 'yes';
            break;
            
                               case 'UD-CN-24_J':
            price = '375.00';
            itemId = 'UD-CN-24_J';
	    name = '77.5&quot; high Contender Mini Banner Stand with Premium Vinyl Graphics';
	    enabled = 'no';
            break;
            
   case 'UD-CN-30_A':
            price = '345.00';
            itemId = 'UD-CN-30_A';
	    name = '77.5&quot; high Contender Standard Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-CN-30_B':
            price = '405.00';
            itemId = 'UD-CN-30_B';
	    name = '77.5&quot; high Contender Standard Banner Stand with Premium Vinyl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-CN-30_C':
            price = '399.00';
            itemId = 'UD-CN-30_C';
	    name = '105&quot; high Contender Standard Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
                        case 'UD-CN-30_D':
            price = '459.00';
            itemId = 'UD-CN-30_D';
	    name = '105&quot; high Contender Standard Banner Stand with Premium Vinyl Graphics';
	    enabled = 'yes';
            break;
            
                   case 'UD-CN-30_E':
            price = '185.00';
            itemId = 'UD-CN-30_E';
	    name = 'Contender Standard banner stand hardware only';
	    enabled = 'yes';
            break;
            
                           case 'UD-CN-30_F':
            price = '185.00';
            itemId = 'UD-CN-30_F';
	    name = 'Contender standard banner stand hardware only';
	    enabled = 'no';
            break;
            
            
               case 'UD-CN-36_A':
            price = '375.00';
            itemId = 'UD-CN-36_A';
	    name = '77.5&quot; high Contender Mega Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-CN-36_B':
            price = '435.00';
            itemId = 'UD-CN-36_B';
	    name = '77.5&quot; high Contender Mega Banner Stand with Premium Vinyl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-CN-36_C':
            price = '429.00';
            itemId = 'UD-CN-36_C';
	    name = '105&quot; high Contender Mega Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
                        case 'UD-CN-36_D':
            price = '489.00';
            itemId = 'UD-CN-36_D';
	    name = '105&quot; high Contender Mega Banner Stand with Premium Vinyl Graphics';
	    enabled = 'yes';
            break;
            
                   case 'UD-CN-36_E':
            price = '199.00';
            itemId = 'UD-CN-36_E';
	    name = 'Contender Mega banner stand hardware only';
	    enabled = 'yes';
            break;
            
                           case 'UD-CN-36_F':
            price = '199.00';
            itemId = 'UD-CN-36_F';
	    name = 'Contender Mega banner stand hardware only';
	    enabled = 'no';
            break;
            
               case 'UD-CN-48_A':
            price = '459.00';
            itemId = 'UD-CN-48_A';
	    name = '77.5&quot; high Contender Monster Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-CN-48_B':
            price = '519.00';
            itemId = 'UD-CN-48_B';
	    name = '77.5&quot; high Contender Monster Banner Stand with Premium Vinyl Graphics';
	    enabled = 'yes';
            break;
            
              case 'UD-CN-48_C':
            price = '549.00';
            itemId = 'UD-CN-48_C';
	    name = '105&quot; high Contender Monster Banner Stand with Economy Vinyl Graphics';
	    enabled = 'yes';
            break;
            
                        case 'UD-CN-48_D':
            price = '609.00';
            itemId = 'UD-CN-48_D';
	    name = '105&quot; high Contender Monster Banner Stand with Premium Vinyl Graphics';
	    enabled = 'yes';
            break;
            
                   case 'UD-CN-48_E':
            price = '219.00';
            itemId = 'UD-CN-48_E';
	    name = 'Contender Monster banner stand hardware only';
	    enabled = 'yes';
            break;
            
                           case 'UD-CN-48_F':
            price = '219.00';
            itemId = 'UD-CN-48_F';
	    name = 'Contender Monster banner stand hardware only';
	    enabled = 'no';
            break;
            
                    case 'UD-SC1_A':
            price = '599.00';
            itemId = 'UD-SC1_A';
	    name = 'Maverick Motorized Banner Stand with Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-SC1_B':
            price = '189.00';
            itemId = 'UD-SC1_B';
	    name = 'Maverick Motorized Banner Stand Hardware Only';
	    enabled = 'yes';
            break;
            
            
                   case 'UD-SC1_C':
            price = '189.00';
            itemId = 'UD-SC1_C';
	    name = 'Maverick Motorized Banner Stand hardware only';
	    enabled = 'no';
            break;
            
                    case 'UD-HOP3x3-S_A':
            price = '949.00';
            itemId = 'UD-HOP3x3-S_A';
	    name = '8 foot Hop-Up Floor Fabric Display Straight - with Center Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-HOP3x3-S_B':
            price = '1.00';
            itemId = 'UD-HOP3x3-S_B';
	    name = '8 foot Hop-Up Floor Fabric Display Straight - with Center Graphics';
	    enabled = 'no';
            break;
            
                
                            
                    case 'UD-HOP3x3-SE_A':
            price = '1074.00';
            itemId = 'UD-HOP3x3-SE_A';
	    name = '8 foot Hop-Up Floor Fabric Display Straight - with Center & End-Cap Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-HOP3x3-SE_B':
            price = '1.00';
            itemId = 'UD-HOP3x3-SE_B';
	    name = '8 foot Hop-Up Floor Fabric Display Straight - with Center & end-cap Graphics';
	    enabled = 'no';
            break;
            
            
                           case 'UD-HOP4x3-S_A':
            price = '1249.00';
            itemId = 'UD-HOP4x3-S_A';
	    name = '10 foot Hop-Up Floor Fabric Display Straight - with Center Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-HOP4x3-S_B':
            price = '1.00';
            itemId = 'UD-HOP4x3-S_B';
	    name = '10 foot Hop-Up Floor Fabric Display Straight - with Center Graphics';
	    enabled = 'no';
            break;
            
                
                            
                    case 'UD-HOP4x3-SE_A':
            price = '1374.00';
            itemId = 'UD-HOP4x3-SE_A';
	    name = '10 foot Hop-Up Floor Fabric Display Straight - with Center & End-Cap Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-HOP4x3-SE_B':
            price = '1.00';
            itemId = 'UD-HOP4x3-SE_B';
	    name = '10 foot Hop-Up Floor Fabric Display Straight - with Center & end-cap Graphics';
	    enabled = 'no';
            break;
            
                                       case 'UD-HOP2x1-S_A':
            price = '395.00';
            itemId = 'UD-HOP2x1-S_A';
	    name = '3 foot Hop-Up Table-Top Fabric Display Straight - with Center Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-HOP2x1-S_B':
            price = '1.00';
            itemId = 'UD-HOP2x1-S_B';
	    name = '3 foot Hop-Up Floor Fabric Display Straight - with Center Graphics';
	    enabled = 'no';
            break;
            
                
                            
                    case 'UD-HOP2x1-SE_A':
            price = '475.00';
            itemId = 'UD-HOP2x1-SE_A';
	    name = '3 foot Hop-Up Table-Top Fabric Display Straight - with Center & End-Cap Graphics';
	    enabled = 'yes';
            break;
            
        case 'UD-HOP2x1-SE_B':
            price = '1.00';
            itemId = 'UD-HOP2x1-SE_B';
	    name = '3 foot Hop-Up Floor Fabric Display Straight - with Center & end-cap Graphics';
	    enabled = 'no';
            break;
            
            
                            case 'BIZ_Cards4/0-250':
            price = '49.00';
            itemId = 'BIZ_Cards4/0-250';
	    name = '250 qty. Business Cards 4/0';
	    enabled = 'yes';
            break;
            
        case 'BIZ_Cards4/0-500':
            price = '59.00';
            itemId = 'BIZ_Cards4/0-500';
	    name = '500 qty. Business Cards 4/0';
	    enabled = 'yes';
            break;
            
              case 'BIZ_Cards4/0-1000':
            price = '89.00';
            itemId = 'BIZ_Cards4/0-1000';
	    name = '1000 qty. Business Cards 4/0';
	    enabled = 'yes';
            break;
            
                   case 'BIZ_Cards4/0-0':
            price = '245.00';
            itemId = 'BIZ_Cards4/0-0';
	    name = 'quote request';
	    enabled = 'no';
            break;
            
          

                      case 'BIZ_Cards4/4-250':
            price = '69.00';
            itemId = 'BIZ_Cards4/4-250';
	    name = '250 qty. Business Cards 4/4';
	    enabled = 'yes';
            break;
            
        case 'BIZ_Cards4/4-500':
            price = '89.00';
            itemId = 'BIZ_Cards4/4-500';
	    name = '500 qty. Business Cards 4/4';
	    enabled = 'yes';
            break;
            
              case 'BIZ_Cards4/4-1000':
            price = '129.00';
            itemId = 'BIZ_Cards4/4-1000';
	    name = '1000 qty. Business Cards 4/4';
	    enabled = 'yes';
            break;
            
                   case 'BIZ_Cards4/4-0':
            price = '245.00';
            itemId = 'BIZ_Cards4/4-0';
	    name = 'quote request';
	    enabled = 'no';
            break;
            
            
                                  case 'POST_Cards4/4-250':
            price = '89.00';
            itemId = 'POST_Cards4/4-250';
	    name = '250 qty. 4x6 Post Cards 4/4';
	    enabled = 'yes';
            break;
            
        case 'POST_Cards4/4-500':
            price = '99.00';
            itemId = 'POST_Cards4/4-500';
	    name = '500 qty. 4x6 Post Cards 4/4';
	    enabled = 'yes';
            break;
            
              case 'POST_Cards4/4-1000':
            price = '159.00';
            itemId = 'POST_Cards4/4-1000';
	    name = '1000 qty. 4x6 Post Cards 4/4';
	    enabled = 'yes';
            break;
            
                   case 'POST_Cards4/4-2500':
            price = '199.00';
            itemId = 'POST_Cards4/4-2500';
	    name = '2500 qty. 4x6 Post Cards 4/4';
	    enabled = 'yes';
            break;
            
        
               case 'POST_Cards4/4-5000':
            price = '299.00';
            itemId = 'POST_Cards4/4-5000';
	    name = '5000 qty. 4x6 Post Cards 4/4';
	    enabled = 'yes';
            break;
            
                 case 'RACK_Cards4/4-250':
            price = '99.00';
            itemId = 'RACK_Cards4/4-250';
	    name = '250 qty. 3.5x8.5 Rack Cards 4/4';
	    enabled = 'yes';
            break;
            
        case 'RACK_Cards4/4-500':
            price = '129.00';
            itemId = 'RACK_Cards4/4-500';
	    name = '500 qty. 3.5x8.5 Rack Cards 4/4';
	    enabled = 'yes';
            break;
            
              case 'RACK_Cards4/4-1000':
            price = '199.00';
            itemId = 'RACK_Cards4/4-1000';
	    name = '1000 qty. 3.5x8.5 Rack Cards 4/4';
	    enabled = 'yes';
            break;
            
                   case 'RACK_Cards4/4-2500':
            price = '299.00';
            itemId = 'RACK_Cards4/4-2500';
	    name = '2500 qty. 3.5x8.5 Rack Cards 4/4';
	    enabled = 'yes';
            break;
            
        
               case 'RACK_Cards4/4-5000':
            price = '399.00';
            itemId = 'RACK_Cards4/4-5000';
	    name = '5000 qty. 3.5x8.5 Rack Cards 4/4';
	    enabled = 'yes';
            break;
            
            
               case 'HDMI_Cable_6ft':
            price = '19.99';
            itemId = 'HDMI_Cable_6ft-PM-HDMI6';
	    name = 'HDMI Cable - 6 foot length';
	    enabled = 'yes';
            break;
            
        case 'HDMI_Cable_12ft':
            price = '29.99';
            itemId = 'HDMI_Cable_12ft-PM-HDMI12';
	    name = 'HDMI Cable - 12 foot length';
	    enabled = 'yes';
            break;
            
              case 'HDMI_Cable_25ft':
            price = '49.99';
            itemId = 'HDMI_Cable_25ft-PM-HDMI25';
	    name = 'HDMI Cable - 25 foot length';
	    enabled = 'yes';
            break;
            
                   case 'HDMI_Cable_50ft':
            price = '89.99';
            itemId = 'HDMI_Cable_50ft-PM-HDMI50';
	    name = 'HDMI Cable - 50 foot length';
	    enabled = 'yes';
            break;
            
                          case 'TV_Stand_SGLblack':
            price = '484.00';
            itemId = 'TV_Stand_SX-SGLB01';
	    name = 'TV Stand with Shelf - Black';
	    enabled = 'yes';
            break;
            
                   case 'TV_Stand_SGLsilver':
            price = '484.00';
            itemId = 'TV_Stand_SX-SGLS01';
	    name = 'TV Stand with Shelf - Silver';
	    enabled = 'yes';
            break;
            
                                      case 'TV_Stand_Cart_SR560G':
            price = '877.00';
            itemId = 'TV_Stand_Cart_SX-SR560G';
	    name = 'TV Cart / Stand with Glass Shelf';
	    enabled = 'yes';
            break;
            
                   case 'TV_Stand_Cart_SR560M':
            price = '877.00';
            itemId = 'TV_Stand_Cart_SX-SR560M';
	    name = 'TV Cart / Stand with Metal Shelf';
	    enabled = 'yes';
            break;


                                      case 'ZED-UP_Lite1_UDZD-Lite':
            price = '199.00';
            itemId = 'ZED-UP_LITE1_UDZD-LITE';
	    name = 'Zed-Up Lite 1 Literature Holder';
	    enabled = 'yes';
            break;
            
                   case 'ZED-UP_LITE2_PDZUPC-2':
            price = '269.00';
            itemId = 'ZED-UP_LITE2_PDZUPC-2';
	    name = 'Zed-Up Lite 2 Literature Holder';
	    enabled = 'yes';
            break;



                                      case 'Innovate_Literature_Displays_Black_UDINN-B':
            price = '169.00';
            itemId = 'Innovate_Literature_Displays_Black_UDINN-B';
	    name = 'Innovate (black)';
	    enabled = 'yes';
            break;
            
                   case 'Innovate_Literature_Displays_Silver_UDINN-S':
            price = '169.00';
            itemId = 'Innovate_Literature_Displays_Silver_UDINN-S';
	    name = 'Innovate (silver)';
	    enabled = 'yes';
            break;

case 'Reveal Pro Brochure Holder - UDLR-1':
price = '89.00';
itemId = 'Reveal Pro Brochure Holder - UDLR-1';
name = 'Reveal Pro Brochure Holder - (4 pocket)';
enabled = 'yes';
break;
            
case 'Reveal Pro Brochure Holder - UDLR-2':
price = '109.00';
itemId = 'Reveal Pro Brochure Holder - UDLR-2';
name = 'Reveal Pro Brochure Holder - (8 pocket)';
enabled = 'yes';
break;

case 'Zed-Up1 Silver - Soft Carry Bag - UDZD-1-S':
price = '169.00';
itemId = 'Zed-Up1 Silver - Soft Carry Bag - UDZD-1-S';
name = 'Zed-Up1 Silver (soft carry bag)';
enabled = 'yes';
break;
            
case 'Zed-Up1 Black - Soft Carry Bag - UDZD-1-B':
price = '169.00';
itemId = 'Zed-Up1 Black - Soft Carry Bag - UDZD-1-B';
name = 'Zed-Up1 Black (soft carry bag)';
enabled = 'yes';
break;


case 'Zed-Up1 Silver - Hard Case - UDZD-1HC-S':
price = '229.00';
itemId = 'Zed-Up1 Silver - Hard Case - UDZD-1HC-S';
name = 'Zed-Up1 Silver (Hard Case)';
enabled = 'yes';
break;
            
case 'Zed-Up1 Black - Hard Case - UDZD-1HC-B':
price = '229.00';
itemId = 'Zed-Up1 Black - Hard Case - UDZD-1HC-B';
name = 'Zed-Up1 Black (Hard Case)';
enabled = 'yes';
break;



            
        }

        // Update the price <span> with the price for the selected item
        //form.find('.price').text(price);
        
        // Update the hidden price <input>
        form.find('[name=my-item-price]').val(price);
        
      // Update the item ID
      form.find('[name=my-item-id]').val(itemId);
      form.find('[name=my-item-name]').val(name);
        if(enabled == 'no') {
	  form.find('[name=my-add-button]').attr("disabled", "disabled");
	}else {
        form.find('[name=my-add-button]').removeAttr("disabled");  }
    });
}); }
