$(document).ready(function(){

	$("#type_oneway").click(function(){
		$(".cl_roundtrip").hide();
	});
	$("#type_roundtrip").click(function(){
		$(".cl_roundtrip").show();
	});
});