function form_generator_on_show(this_fe_ge,this_value,this_show_conditions,this_participants){





	for(i=0;i<this_participants.length;i++) {
		//alert(this_participants[i])
		$('#fe-ge-table-'+this_fe_ge+' .fe-ge-area-'+this_participants[i]).hide();
	}

	
	
	for(i=0;i<this_show_conditions[this_value].length;i++) {
		//alert(this_participants[i])
		$('#fe-ge-table-'+this_fe_ge+' .fe-ge-area-'+this_show_conditions[this_value][i]).show();
	}
	

	 
	//$('.fe-ge-xxx-'+this_participants[i]).show();
	//alert(this_participants);

}