$(document).ready(function(){
		//$('#location_search').hide();
		//$('#post_code').blur(
		//	post_code_change = function(){
		//		$.ajax({
		//			url: '/config/xml.php?method=get_front_locations'+"&"+'country_id='+$('#country_id').val()+"&"+'param='+$('#post_code').val(),
		//			processData: false,
		//			dataType: "html",
		//			success: function(html){
		//				$("#location_id").html(html);
		//			}
		//		});
		//		$('#state_id').val(0);
		//		$.ajax({
		//			url: '/config/xml.php?method=get_regions'+"&"+'param='+$('#state_id').val()+"&"+'is_front=1',
		//			processData: false,
		//			dataType: "html",
		//			success: function(html){
		//				$("#region_id").html(html);
		//			}					
		//		});
		//	}
		//);
		
		$("#marital_2").click(
			function(){
				$("#marital_dont_mind").attr('checked',"");
			}
		);
		
		$("#marital_3").click(
			function(){
				$("#marital_dont_mind").attr('checked',"");
			}
		);
		
		$("#marital_dont_mind").click(
			function(){
				$("#marital_2").attr('checked',"");
				$("#marital_3").attr('checked',"");
			}
		);
	});

