var quantity = $("#0_quantity").val();
   
   $(document).ready(function(){
   
       //alert(quantity);
       $("#1_size").change(function(){
           var opt = this.options[this.selectedIndex].value;
           if (opt == "SW-1001") {
               $("#0_quantity").val(10);
           }
           if (opt == "SW-1002") {
               $("#0_quantity").val(20);
           }
           if (opt == "SW-1003"){
		   	$("#0_quantity").val(30);
		   }
       })
   });
   /*
   function validateQ(selector, item){
       var quantity = $("#0_quantity").val();
       var opt = $("#1_size").val();
	   if (opt == "SW-1001"){
	   	var min = 10;
	   }     
	   if(opt == "SW-1002")
	   {
	   	var min = 20;
	   }
	   if(opt == "SW-1003")
	   {
	   	var min = 30;
	   }
       if (quantity < min) {
           $(selector).val(min);
           alert("The minimum order for this item is " + min + " " + item + ". Your quantity has been updated.");
           return false;
       }
       else 
           return true;
   }*/
   function validateQuantityCandle() {
  
       if ($("#1_size").val() == "SW-1001") return validateQuan('#0_quantity', 10, 'pieces');    
       if ($("#1_size").val() == "SW-1002") return validateQuan('#0_quantity', 20, 'pieces');
	   if ($("#1_size").val() == "SW-1003") return validateQuan('#0_quantity', 30, 'pieces');
}