Palo de ciego:
nose... pero Si se puede acceder mediante JAVASCRIPT al valor del titulo de un input.
algo como asi:
Cita: if ((oInput.value == '') && (oInput.title != '')) { oInput.value = oInput.title; }
// Add event handlers for focus and blur
autoPopulate.addEvent(oInput, 'focus', function() {
// If value and title are equal on focus, clear value
if (this.value == this.title) {
this.value = '';
// Make input caret visible in IE
this.select();
checa este link, alomejor te sirve de algo
http://www.456bereastreet.com/archiv...th_javascript/