$("select", $(".productView")).change(
	function(){
		if($(this).val()){
			$("select").attr("disabled", "disabled");
			$(this).removeAttr("disabled");
		}
		else{
			$("select").removeAttr("disabled");
		}
	}
);
