function changeselect() {

	if (document.register.q1.value == '4') {
		do_hide('q1');
	} else {
		do_show('q1');
	}
}

function do_show(question) {
	if (question == 'q1') {
		Element.show('q2');
		Element.show('q3');

	}
	if (question == 'q7') {
		Element.show('q8');
		Element.show('q9');
		Element.show('q10');
	}

	if (question == 'q9') {
		Element.show('q10');
	}
	// Element.show(question);
	// Element.show('sample', 'sample2'); のようにして2個同時に表示することも可能
}

function do_hide(question) {
	if (question == 'q1') {
		Element.hide('q2');
		Element.hide('q3');
	}

	if (question == 'q7') {
		Element.hide('q8');
		Element.hide('q9');
		Element.hide('q10');
	}
	if (question == 'q9') {
		Element.hide('q10');
	}
}
// 多重クリック無効
function DisableButton(b) {
	// b.disabled = true;
	b.style.display = 'none';
	demo = document.getElementById('demo');
	demo.style.display = 'inline';

	if(navigator.userAgent.match(/AppleWebKit/i)){
		document.regist.type_2_x.value=1;
		p='type_2.x';
		document.regist.p.value=1;
		document.regist.submit();
	}else{
		return;
	}


}

