$(':text').live('focus', SelectPhoto($(this)));
function SelectPhoto(p){ alert(p.attr("value")); }
$(':text').live('focus', SelectPhoto);
function SelectPhoto(){ alert($(this).val()); };