	function sentProduct(gotourl,formId)
	{
		var loc3obj = $("#"+formId+" [class='loc3']");
		
		if(loc3obj.size()>1)
		{
			var index = loc3obj.size()-1;
			
			var weatherLoc = $(loc3obj[index]).val();
		}
		else
		{
			var weatherLoc =  $(loc3obj).val();
		}
		//alert(weatherLoc);
		gotourl = gotourl+'.php';
		
		var textArr = $("#"+formId+" :text");

		var selArr = $("#"+formId+" select");
		
		var textPara = "";
		
		var selPara = "";

		$.each(textArr,function(i,obj){
			textPara += $(obj).attr("name")+"="+$(obj).val()+"&";
						
		});
		
		$.each(selArr,function(i,obj){
			selPara += $(obj).attr("name")+"="+$(obj).val()+"&"; 
			
			
		});
		
		
		/*if($(":text").val()==undefined)
		{
			alert('fuck');
			
		}
		else
		{
			alert($(":text").val());
		}*/
		
	
		gotourl = gotourl + "?" + textPara + selPara + "sys_loc3=" + weatherLoc;
		
		//alert(gotourl);
		window.location.href = gotourl;
	}