// JavaScript Document
function change_state()
{
	
	var state;
	state = document.getElementById("state").value;
	if(state != '')
		window.location.href = 'http://www.houserepos.net/houses/'+state+'.html';
	else
		window.location.href = 'http://www.houserepos.net/listings.php';
}
