That should be easy, but I don't think it will do what you want it to do.
I'm assuming you want to have a preview window with the texture preview, and allow users to type in new texture IDs, push the button, and see the preview right away.
Simply changing the value of the param after the page has loaded won't accomplish that.
When the button gets pushed, you'll need to remove the applet and re-create it, with the new param value in order for the changes to take effect.
Here's the code you asked for:
<applet
code="net.minecraft.skintest.ModelPreviewApplet"
archive="http://www.minecraft.net/skin/skintest.jar" codebase="."
width="320"
height="320">
<param name="name" id="previewName" value="535" />
</applet>
<input type="text" id="newValue" />
<script>
document.getElementById('newValue').onblur = function(event) {
// grab value
var iVal = parseInt(this.value);
if(!iVal && iVal !== 0) return;
// update param
document.getElementById('previewName').value = iVal;
return true;
};
</script>
If you try that and it doesn't accomplish what you wanted, let me know and I can write the code that will do it.