$(function(){
	
	function get_playgrounds(){
		var boro = $("#playground_boro option:selected").val();
		$("#playground_name").unbind();
		$("#playground_name").autocomplete("/web/fitness/controller/PlaygroundsList.php", {
			delay: 10,
			minChars: 1,
			matchSubset: 1,
			maxItemsToShow: 10,
			cacheLength: 10,
			autoFill: true,
			extraParams: {
				boro: boro
			}
		});
	
	$("#playground_name").focus(function(){
		$("#playground_name").select();
	});
	}
	
	get_playgrounds();
	$("#playground_boro").change(function(){
		$("#playground_name").val("");
		get_playgrounds();
	});
});

