$(document).ready (
	function (){	
		$("form[name=cart_quantity]").submit(function() 
				{
				      
						var x = $('input:radio');
						if(x.length) {
						   
						
				      
					  if($("input:radio:checked").val()>0)
						  {
						  	return true;
						  }
					  else
						  {
							alert("Proszę wybrać wersje!");
						  	return false;
						  }
						}
						else
							{
								return true;
							}
				      
				});
	}
);

