$(document).ready(function(){
	$jq("input[@name='match_sex[]']").click(function(){		
		if ( $jq(this).attr("id") == 'match_sex_16'){			
			if ($jq(this).is(":checked")) {
				$jq("input[@name='match_sex[]']").attr('checked','');
				$jq("input#match_sex_16").attr('checked','checked');
			}			
		} else {
			$jq("input#match_sex_16").attr('checked','');
		}
	});
});