/*
$(function()
{
	$("#point_sel").change(function()
    {
		var id =$("#point_sel").val();
		if($("#point_sel").val()=='0')
		{
			alert("您未选择！ ");
			$("#point_sel").attr("value",'0');
				return;
		}
		else
		{
			location.href="point.php?id="+id+"&type=2";
		}

	});
});
*/
$(document).ready(function()     
{        
	var key=$("#diqu_re").val();

	$("#diqu").attr("value",key);

} ); 
/*
$(function()
{
	$("#type_sel").change(function()
    {
		var id =$("#type_sel").val();
		if($("#type_sel").val()=='0')
		{
			alert("您未选择！ ");
			$("#type_sel").attr("value",'0');
				return;
		}
		else
		{
			location.href="point.php?id="+id+"&type=3";
		}

	});
});
*/

$(function()
{
	$("#gift_sreach").click(function()
    {
		var type =$("#type_sel").val();
		var point =$("#point_sel").val();
		if($("#type_sel").val()=='0')
		{
			alert("您未选择！ ");
			$("#type_sel").attr("value",'0');
				return;
		}
		else
		{
			location.href="point_sreach.php?point="+point+"&type="+type;
		}

	});
});