<!-- STATE TOGGLE -->
function state()
{
	var val=document.getElementById('state').options[document.getElementById('state').options.selectedIndex].value;
	self.location='reg_profile.php?state=' + val ;
}


<!-- GET REGION -->

function getRegion() {
	var val=document.getElementById('state').options[document.getElementById('state').options.selectedIndex].value;
	$.post("http://www.bridepop.com/guide/rpc/rpc.php", {state: ""+val+""}, function(data){
		if(data.length >0) {
			$('.region').css("display","block");
			$('select#region').html(data);
		}
	});
}

function getCategory() {
	var val=document.getElementById('region').options[document.getElementById('region').options.selectedIndex].value;
	$.post("http://www.bridepop.com/guide/rpc/rpc.php", {region: ""+val+""}, function(data){
		if(data.length >0) {
			$('.category').css("display","block");
			$('select#category').html(data);
		}
	});
}

function ID(str) {	
		id = null;
		id = str;
}



