function Calc(form){
var inch = form.inch.value;

form.metric.value = (inch * 25.4);
form.inch.focus();
form.inch.select();

}
