// JavaScript Document
$(document).ready(function(){
	$("#rPlace").change(function(){
		$("#rPlace option").each(function(i,o){
			if($(this).attr("selected"))
			{
				$(".rService").hide();
				$(".rService").eq(i).show();
			}
		});
		$("#rDetail").hide();
	});
	$("#rPlace").change();
	$(".rService").change(function(){
			$("#rDetail").show();
			$("#rDetail").attr("href", "#");
			$("#rDetail").attr("href",$("option:selected",this).attr("title"));
	});
});
