jQuery(document).ready(function($) {
	$('.ns-xclusive').change(function() {
		if ($(this).val().length > 0) {
			var target = $(this).attr('id');
			$('.ns-xclusive').each(function() {
				if (target != $(this).attr('id')) {
					$(this).val('');
				}
			});
		}
	});
});
