function formEmail(first)
/************************************************************************/
/* Function takes one argument and returns the result    */
/************************************************************************/

{
var second = 'dolcetto';
var third = 'org';
var forth = 'uk';

return first + '@' + second + '.' + third + '.' + forth

};