function showmotto4()
{

if (document.nom_verb_acc.word1.options[document.nom_verb_acc.word1.selectedIndex].value != '' && document.nom_verb_acc.word2.options[document.nom_verb_acc.word2.selectedIndex].value !='' )
	{
document.nom_verb_acc.msgbox.value=document.nom_verb_acc.word1.options[document.nom_verb_acc.word1.selectedIndex].value + ' '+document.nom_verb_acc.word2.options[document.nom_verb_acc.word2.selectedIndex].value;
	
}
}

function clearmotto4()
{

document.nom_verb_acc.word1.options.selectedIndex=0;
document.nom_verb_acc.word2.options.selectedIndex=0;
document.nom_verb_acc.msgbox.value='';
}


