
function setDelivery() {
	var is_error = false;	
	//alert("Hi");
	if ($("#delivery").val()=='') {
		is_error = true;
		$("#delivery").css("border", "2px solid red");
	} else {
		$("#delivery").css("border", "1px solid #707070");
	}
	
	
	if (!is_error) {
		
			$.post("./content/common/common.setdelivery.php", {cid:$("#delivery").val()}, 
  				function(data){
  					if(data){
  							$("#discount").html(data);	
						}
  				}
  			);
		
	}


}



