function cargarOpciones(origen, destino, relacion, retorno) {		
	id_origen = $F(origen);
	//alert(origen + ' ' + id_origen + ' ' + destino + ' ' + relacion + ' ' + retorno);
	miAjax = new Ajax.Updater(destino,'select_dependientes_proceso.php', {
				method: 'GET',
				parameters: {
					id_origen: id_origen,
					destino: destino,
					relacion: relacion,
					retorno: retorno
				}
			})
}
function cargarLetra(origen, destino) {	
	id_letra = $F(origen);
	miAjax = new Ajax.Updater(destino,'ajax_letras.php', {
				method: 'GET',
				parameters: {
					id_letra: id_letra
				}
			})
}