
	function changeEscortList(o){
		var escort_id = o.options[o.selectedIndex].value;
		if ( escort_id == "" ) { return; }
		escort_id = escort_id.toLowerCase();
		escort_id = escort_id.replace(' ', '-');
		var url = 'http://'+$.url.attr("host")+escort_id;
		
//		var escort_name = o.options[o.selectedIndex].text;
// 		var url = 'http://'+$.url.attr("host")+'/'+escort_id+'.'+escape(escort_name.toLowerCase());
		location.href = url;
	}
