Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript">
function cargaTexto(obj){
alert(obj.name+" y "+obj.value);
var texto;
texto = "Este es el n select : " + obj.value.length;
alert("este es texto : "+texto);
}
</script>
</head>
<body>
<table border="1" cellspacing="0" cellpadding="0">
<tr>
<td><input name="nombredelcontrol_1" id="nombredelcontrol_1" type="text" onBlur="cargaTexto(this)"></td>
</tr>
<tr>
<td><input name="nombredelcontrol_2" id="nombredelcontrol_2" type="text" onBlur="cargaTexto(this)"></td>
</tr>
<tr>
<td><input name="nombredelcontrol_3" id="nombredelcontrol_3" type="text" onBlur="cargaTexto(this)"></td>
</tr>
</table>
</body>
</html>
Algo así?
No tengo claro si es lo que quieres...
Quim