function morph(value, word0, word1) 
{ 
    if (/^1$/.test(value)) 
        return word1; 
    else 
       	return word0;
}
