having no control with an embedded form.
this is some examples to get rid / hide the value of a submit button with CSS, hide the text on the button so all you see is the text built into the image itself.
input[submit]
{
color: transparent;
}
or
input[submit]
{
text-indent:-9999px;
}