function checkSelect() {
	var select = document.getElementById('device');
	var other = document.getElementById('other');
	
	if (select.value == 'Other') {
		other.className = 'inputtext';
	} else {
		other.className = 'hide';
	}
}
