$(document).ready(function(){
	$('#myForm').submit( function () {
		//alert( $(this).html() );
		appendExtraField();
	});
});
function appendExtraField() {
	var extraHtml = '<input type="hidden" name="code" value="lm08" />';
	$('#myForm').append(extraHtml);
}