$(document).ready(function() {
$('.mon_compte li input').click(function(){
if($(this).attr('value')=='e-mail'){
$(this).attr('value','');
}
return true;							 
});
});

