function SearchByState( theState )
{
var theForm = document.aspnetForm;

	if (theForm) {
		theForm.State.value = theState;
		//alert(theState);
		theForm.submit();
	}
}
