function SelectRoute(strForm, strAction)
{
	var oForm = document.all(strForm);
	switch(strAction)
	{
		case 'SELECCION_PROVINCIA':
		case 'SELECCION_REGION':
		case 'SEARCH':
			oForm.action = 'index.php';
			break;
	}

	ExecuteActionURL(strForm, strAction);
}

function Validate()
{
	return true;
}
