$(function(){

	$(".with_agent input").each(function(){
		
		$(this).click(function(){
			
			if ($(this).attr('value') == '1') {
				$("#with_agent_div").css('display', 'block');
			}
			else {
				$("#with_agent_div").css('display', 'none');	
			}
		});
	});
});