function showHideOnCom(sel)
{
	$('#comment_row').hide();
	$('#comment_row_dua').hide();
	$('#comment_fb_row').hide();

	if(sel == 0)
	{		
		$('#comment_row').show();
		$('#comment_row_dua').show();
	}
	else if(sel == 1)
	{
		$('#comment_fb_row').show();
	}
}

